@nsshunt/ststestrunner 1.0.65 → 1.0.67
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.
- package/dist/ststestrunner.mjs +351 -324
- package/dist/ststestrunner.mjs.map +1 -1
- package/dist/ststestrunner.umd.js +608 -573
- package/dist/ststestrunner.umd.js.map +1 -1
- package/package.json +13 -13
package/dist/ststestrunner.mjs
CHANGED
|
@@ -4580,6 +4580,16 @@ const isPlainObject = (val) => {
|
|
|
4580
4580
|
const prototype2 = getPrototypeOf(val);
|
|
4581
4581
|
return (prototype2 === null || prototype2 === Object.prototype || Object.getPrototypeOf(prototype2) === null) && !(toStringTag in val) && !(iterator in val);
|
|
4582
4582
|
};
|
|
4583
|
+
const isEmptyObject = (val) => {
|
|
4584
|
+
if (!isObject$2(val) || isBuffer(val)) {
|
|
4585
|
+
return false;
|
|
4586
|
+
}
|
|
4587
|
+
try {
|
|
4588
|
+
return Object.keys(val).length === 0 && Object.getPrototypeOf(val) === Object.prototype;
|
|
4589
|
+
} catch (e2) {
|
|
4590
|
+
return false;
|
|
4591
|
+
}
|
|
4592
|
+
};
|
|
4583
4593
|
const isDate = kindOfTest("Date");
|
|
4584
4594
|
const isFile = kindOfTest("File");
|
|
4585
4595
|
const isBlob = kindOfTest("Blob");
|
|
@@ -4607,6 +4617,9 @@ function forEach(obj, fn, { allOwnKeys = false } = {}) {
|
|
|
4607
4617
|
fn.call(null, obj[i], i, obj);
|
|
4608
4618
|
}
|
|
4609
4619
|
} else {
|
|
4620
|
+
if (isBuffer(obj)) {
|
|
4621
|
+
return;
|
|
4622
|
+
}
|
|
4610
4623
|
const keys = allOwnKeys ? Object.getOwnPropertyNames(obj) : Object.keys(obj);
|
|
4611
4624
|
const len = keys.length;
|
|
4612
4625
|
let key;
|
|
@@ -4617,6 +4630,9 @@ function forEach(obj, fn, { allOwnKeys = false } = {}) {
|
|
|
4617
4630
|
}
|
|
4618
4631
|
}
|
|
4619
4632
|
function findKey(obj, key) {
|
|
4633
|
+
if (isBuffer(obj)) {
|
|
4634
|
+
return null;
|
|
4635
|
+
}
|
|
4620
4636
|
key = key.toLowerCase();
|
|
4621
4637
|
const keys = Object.keys(obj);
|
|
4622
4638
|
let i = keys.length;
|
|
@@ -4807,6 +4823,9 @@ const toJSONObject = (obj) => {
|
|
|
4807
4823
|
if (stack.indexOf(source2) >= 0) {
|
|
4808
4824
|
return;
|
|
4809
4825
|
}
|
|
4826
|
+
if (isBuffer(source2)) {
|
|
4827
|
+
return source2;
|
|
4828
|
+
}
|
|
4810
4829
|
if (!("toJSON" in source2)) {
|
|
4811
4830
|
stack[i] = source2;
|
|
4812
4831
|
const target = isArray(source2) ? [] : {};
|
|
@@ -4856,6 +4875,7 @@ const utils$1 = {
|
|
|
4856
4875
|
isBoolean,
|
|
4857
4876
|
isObject: isObject$2,
|
|
4858
4877
|
isPlainObject,
|
|
4878
|
+
isEmptyObject,
|
|
4859
4879
|
isReadableStream,
|
|
4860
4880
|
isRequest,
|
|
4861
4881
|
isResponse,
|
|
@@ -5247,15 +5267,16 @@ const platform = {
|
|
|
5247
5267
|
...platform$1
|
|
5248
5268
|
};
|
|
5249
5269
|
function toURLEncodedForm(data, options) {
|
|
5250
|
-
return toFormData$1(data, new platform.classes.URLSearchParams(),
|
|
5270
|
+
return toFormData$1(data, new platform.classes.URLSearchParams(), {
|
|
5251
5271
|
visitor: function(value2, key, path, helpers) {
|
|
5252
5272
|
if (platform.isNode && utils$1.isBuffer(value2)) {
|
|
5253
5273
|
this.append(key, value2.toString("base64"));
|
|
5254
5274
|
return false;
|
|
5255
5275
|
}
|
|
5256
5276
|
return helpers.defaultVisitor.apply(this, arguments);
|
|
5257
|
-
}
|
|
5258
|
-
|
|
5277
|
+
},
|
|
5278
|
+
...options
|
|
5279
|
+
});
|
|
5259
5280
|
}
|
|
5260
5281
|
function parsePropPath(name) {
|
|
5261
5282
|
return utils$1.matchAll(/\w+|\[(\w*)]/g, name).map((match) => {
|
|
@@ -5766,7 +5787,7 @@ function throttle(fn, freq) {
|
|
|
5766
5787
|
clearTimeout(timer);
|
|
5767
5788
|
timer = null;
|
|
5768
5789
|
}
|
|
5769
|
-
fn
|
|
5790
|
+
fn(...args);
|
|
5770
5791
|
};
|
|
5771
5792
|
const throttled = (...args) => {
|
|
5772
5793
|
const now = Date.now();
|
|
@@ -5941,7 +5962,7 @@ function mergeConfig$1(config1, config2) {
|
|
|
5941
5962
|
validateStatus: mergeDirectKeys,
|
|
5942
5963
|
headers: (a2, b2, prop) => mergeDeepProperties(headersToObject(a2), headersToObject(b2), prop, true)
|
|
5943
5964
|
};
|
|
5944
|
-
utils$1.forEach(Object.keys(
|
|
5965
|
+
utils$1.forEach(Object.keys({ ...config1, ...config2 }), function computeConfigValue(prop) {
|
|
5945
5966
|
const merge2 = mergeMap[prop] || mergeDeepProperties;
|
|
5946
5967
|
const configValue = merge2(config1[prop], config2[prop], prop);
|
|
5947
5968
|
utils$1.isUndefined(configValue) && merge2 !== mergeDirectKeys || (config[prop] = configValue);
|
|
@@ -6469,7 +6490,7 @@ function dispatchRequest(config) {
|
|
|
6469
6490
|
return Promise.reject(reason);
|
|
6470
6491
|
});
|
|
6471
6492
|
}
|
|
6472
|
-
const VERSION$1 = "1.
|
|
6493
|
+
const VERSION$1 = "1.11.0";
|
|
6473
6494
|
const validators$1 = {};
|
|
6474
6495
|
["object", "boolean", "number", "function", "string", "symbol"].forEach((type, i) => {
|
|
6475
6496
|
validators$1[type] = function validator2(thing) {
|
|
@@ -6637,8 +6658,8 @@ let Axios$1 = class Axios {
|
|
|
6637
6658
|
let len;
|
|
6638
6659
|
if (!synchronousRequestInterceptors) {
|
|
6639
6660
|
const chain = [dispatchRequest.bind(this), void 0];
|
|
6640
|
-
chain.unshift
|
|
6641
|
-
chain.push
|
|
6661
|
+
chain.unshift(...requestInterceptorChain);
|
|
6662
|
+
chain.push(...responseInterceptorChain);
|
|
6642
6663
|
len = chain.length;
|
|
6643
6664
|
promise = Promise.resolve(config);
|
|
6644
6665
|
while (i < len) {
|
|
@@ -13579,7 +13600,7 @@ var Xa = { author: T$1, format: M$1, genre: w$1, publisher: L$1, series: D$1, ti
|
|
|
13579
13600
|
var H$1 = ["###-###-####", "(###) ###-####", "1-###-###-####", "###.###.####"];
|
|
13580
13601
|
var $a = { formats: H$1 }, W$1 = $a;
|
|
13581
13602
|
var G$1 = ["azure", "black", "blue", "cyan", "fuchsia", "gold", "green", "grey", "indigo", "ivory", "lavender", "lime", "magenta", "maroon", "mint green", "olive", "orange", "orchid", "pink", "plum", "purple", "red", "salmon", "silver", "sky blue", "tan", "teal", "turquoise", "violet", "white", "yellow"];
|
|
13582
|
-
var er$1 = { human: G$1 }, F
|
|
13603
|
+
var er$1 = { human: G$1 }, F = er$1;
|
|
13583
13604
|
var N = ["Automotive", "Baby", "Beauty", "Books", "Clothing", "Computers", "Electronics", "Games", "Garden", "Grocery", "Health", "Home", "Industrial", "Jewelry", "Kids", "Movies", "Music", "Outdoors", "Shoes", "Sports", "Tools", "Toys"];
|
|
13584
13605
|
var E = ["Discover the {{animal.type}}-like agility of our {{commerce.product}}, perfect for {{word.adjective}} users", "Discover the {{word.adjective}} new {{commerce.product}} with an exciting mix of {{commerce.productMaterial}} ingredients", "Ergonomic {{commerce.product}} made with {{commerce.productMaterial}} for all-day {{word.adjective}} support", "Experience the {{color.human}} brilliance of our {{commerce.product}}, perfect for {{word.adjective}} environments", "Featuring {{science.chemical_element.name}}-enhanced technology, our {{commerce.product}} offers unparalleled {{word.adjective}} performance", "Innovative {{commerce.product}} featuring {{word.adjective}} technology and {{commerce.productMaterial}} construction", "Introducing the {{location.country}}-inspired {{commerce.product}}, blending {{word.adjective}} style with local craftsmanship", "New {{color.human}} {{commerce.product}} with ergonomic design for {{word.adjective}} comfort", 'New {{commerce.product}} model with {{number.int({"min": 1, "max": 100})}} GB RAM, {{number.int({"min": 1, "max": 1000})}} GB storage, and {{word.adjective}} features', "Our {{animal.type}}-friendly {{commerce.product}} ensures {{word.adjective}} comfort for your pets", "Our {{food.adjective}}-inspired {{commerce.product}} brings a taste of luxury to your {{word.adjective}} lifestyle", "Professional-grade {{commerce.product}} perfect for {{word.adjective}} training and recreational use", "Savor the {{food.adjective}} essence in our {{commerce.product}}, designed for {{word.adjective}} culinary adventures", "Stylish {{commerce.product}} designed to make you stand out with {{word.adjective}} looks", "The sleek and {{word.adjective}} {{commerce.product}} comes with {{color.human}} LED lighting for smart functionality", "The {{color.human}} {{commerce.product}} combines {{location.country}} aesthetics with {{science.chemical_element.name}}-based durability", "The {{company.catchPhrase}} {{commerce.product}} offers reliable performance and {{word.adjective}} design", "The {{person.firstName}} {{commerce.product}} is the latest in a series of {{word.adjective}} products from {{company.name}}", "{{commerce.productAdjective}} {{commerce.product}} designed with {{commerce.productMaterial}} for {{word.adjective}} performance", "{{company.name}}'s most advanced {{commerce.product}} technology increases {{word.adjective}} capabilities"];
|
|
13585
13606
|
var J$1 = { adjective: ["Awesome", "Bespoke", "Electronic", "Elegant", "Ergonomic", "Fantastic", "Fresh", "Frozen", "Generic", "Gorgeous", "Handcrafted", "Handmade", "Incredible", "Intelligent", "Licensed", "Luxurious", "Modern", "Oriental", "Practical", "Recycled", "Refined", "Rustic", "Sleek", "Small", "Soft", "Tasty", "Unbranded"], material: ["Aluminum", "Bamboo", "Bronze", "Ceramic", "Concrete", "Cotton", "Gold", "Granite", "Marble", "Metal", "Plastic", "Rubber", "Silk", "Steel", "Wooden"], product: ["Bacon", "Ball", "Bike", "Car", "Chair", "Cheese", "Chicken", "Chips", "Computer", "Fish", "Gloves", "Hat", "Keyboard", "Mouse", "Pants", "Pizza", "Salad", "Sausages", "Shirt", "Shoes", "Soap", "Table", "Towels", "Tuna"] };
|
|
@@ -13594,7 +13615,7 @@ var j$1 = ["{{person.last_name.generic}} - {{person.last_name.generic}}", "{{per
|
|
|
13594
13615
|
var q$1 = ["ability", "access", "adapter", "algorithm", "alliance", "analyzer", "application", "approach", "architecture", "archive", "array", "artificial intelligence", "attitude", "benchmark", "budgetary management", "capability", "capacity", "challenge", "circuit", "collaboration", "complexity", "concept", "conglomeration", "contingency", "core", "customer loyalty", "data-warehouse", "database", "definition", "emulation", "encoding", "encryption", "firmware", "flexibility", "focus group", "forecast", "frame", "framework", "function", "functionalities", "generative AI", "hardware", "help-desk", "hierarchy", "hub", "implementation", "infrastructure", "initiative", "installation", "instruction set", "interface", "internet solution", "intranet", "knowledge base", "knowledge user", "leverage", "local area network", "matrices", "matrix", "methodology", "microservice", "middleware", "migration", "model", "moderator", "monitoring", "moratorium", "neural-net", "open architecture", "orchestration", "paradigm", "parallelism", "policy", "portal", "pricing structure", "process improvement", "product", "productivity", "project", "projection", "protocol", "service-desk", "software", "solution", "standardization", "strategy", "structure", "success", "support", "synergy", "system engine", "task-force", "throughput", "time-frame", "toolset", "utilisation", "website", "workforce"];
|
|
13595
13616
|
var rr$1 = { adjective: K$1, buzz_adjective: O$1, buzz_noun: x$2, buzz_verb: z$1, descriptor: V$1, legal_entity_type: Y$1, name_pattern: j$1, noun: q$1 }, U$1 = rr$1;
|
|
13596
13617
|
var Z$1 = ["avatar", "category", "comment", "createdAt", "email", "group", "id", "name", "password", "phone", "status", "title", "token", "updatedAt"];
|
|
13597
|
-
var or$1 = { column: Z$1 }, _ = or$1;
|
|
13618
|
+
var or$1 = { column: Z$1 }, _$1 = or$1;
|
|
13598
13619
|
var Q$1 = { wide: ["April", "August", "December", "February", "January", "July", "June", "March", "May", "November", "October", "September"], abbr: ["Apr", "Aug", "Dec", "Feb", "Jan", "Jul", "Jun", "Mar", "May", "Nov", "Oct", "Sep"] };
|
|
13599
13620
|
var X$1 = { wide: ["Friday", "Monday", "Saturday", "Sunday", "Thursday", "Tuesday", "Wednesday"], abbr: ["Fri", "Mon", "Sat", "Sun", "Thu", "Tue", "Wed"] };
|
|
13600
13621
|
var nr$1 = { month: Q$1, weekday: X$1 }, $$1 = nr$1;
|
|
@@ -13616,17 +13637,17 @@ var ye$1 = ["California maki", "Peking duck", "Philadelphia maki", "arepas", "ba
|
|
|
13616
13637
|
var pe$1 = ["{{food.adjective}} {{food.ethnic_category}} stew", "{{food.adjective}} {{food.meat}} with {{food.vegetable}}", "{{food.ethnic_category}} {{food.ingredient}} soup", "{{food.fruit}} and {{food.fruit}} tart", "{{food.fruit}} pie", "{{food.fruit}}-glazed {{food.meat}} skewers", "{{food.fruit}}-infused {{food.meat}} roast", "{{food.ingredient}} and {{food.meat}} pie", "{{food.ingredient}}-infused {{food.meat}}", "{{food.meat}} steak", "{{food.meat}} with {{food.fruit}} sauce", "{{food.spice}}-crusted {{food.meat}}", "{{food.spice}}-rubbed {{food.meat}} salad", "{{food.vegetable}} salad", "{{person.first_name.generic}}'s special {{food.ingredient}}"];
|
|
13617
13638
|
var ge$1 = ["Ainu", "Albanian", "American", "Andhra", "Anglo-Indian", "Arab", "Argentine", "Armenian", "Assyrian", "Awadhi", "Azerbaijani", "Balochi", "Bangladeshi", "Bashkir", "Belarusian", "Bengali", "Berber", "Brazilian", "British", "Buddhist", "Bulgarian", "Cajun", "Cantonese", "Caribbean", "Chechen", "Chinese", "Chinese Islamic", "Circassian", "Crimean Tatar", "Cypriot", "Czech", "Danish", "Egyptian", "English", "Eritrean", "Estonian", "Ethiopian", "Filipino", "French", "Georgian", "German", "Goan", "Goan Catholic", "Greek", "Gujarati", "Hyderabad", "Indian", "Indian Chinese", "Indian Singaporean", "Indonesian", "Inuit", "Irish", "Italian", "Italian-American", "Jamaican", "Japanese", "Jewish - Israeli", "Karnataka", "Kazakh", "Keralite", "Korean", "Kurdish", "Laotian", "Latvian", "Lebanese", "Lithuanian", "Louisiana Creole", "Maharashtrian", "Malay", "Malaysian Chinese", "Malaysian Indian", "Mangalorean", "Mediterranean", "Mennonite", "Mexican", "Mordovian", "Mughal", "Native American", "Nepalese", "New Mexican", "Odia", "Pakistani", "Parsi", "Pashtun", "Pennsylvania Dutch", "Peranakan", "Persian", "Peruvian", "Polish", "Portuguese", "Punjabi", "Québécois", "Rajasthani", "Romani", "Romanian", "Russian", "Sami", "Serbian", "Sindhi", "Slovak", "Slovenian", "Somali", "South Indian", "Soviet", "Spanish", "Sri Lankan", "Taiwanese", "Tamil", "Tatar", "Texan", "Thai", "Turkish", "Udupi", "Ukrainian", "Vietnamese", "Yamal", "Zambian", "Zanzibari"];
|
|
13618
13639
|
var be$1 = ["apple", "apricot", "aubergine", "avocado", "banana", "berry", "blackberry", "blood orange", "blueberry", "bush tomato", "butternut pumpkin", "cantaloupe", "cavalo", "cherry", "corella pear", "cranberry", "cumquat", "currant", "custard apple", "custard apples daikon", "date", "dragonfruit", "dried apricot", "elderberry", "feijoa", "fig", "fingerlime", "goji berry", "grape", "grapefruit", "guava", "honeydew melon", "incaberry", "jarrahdale pumpkin", "juniper berry", "kiwi fruit", "kiwiberry", "lemon", "lime", "longan", "loquat", "lychee", "mandarin", "mango", "mangosteen", "melon", "mulberry", "nashi pear", "nectarine", "olive", "orange", "papaw", "papaya", "passionfruit", "peach", "pear", "pineapple", "plum", "pomegranate", "prune", "rockmelon", "snowpea", "sprout", "starfruit", "strawberry", "sultana", "tangelo", "tomato", "watermelon"];
|
|
13619
|
-
var Ce
|
|
13640
|
+
var Ce = ["achacha", "adzuki beans", "agar", "agave syrup", "ajowan seed", "albacore tuna", "alfalfa", "allspice", "almond oil", "almonds", "amaranth", "amchur", "anchovies", "aniseed", "annatto seed", "apple cider vinegar", "apple juice", "apple juice concentrate", "apples", "apricots", "arborio rice", "arrowroot", "artichoke", "arugula", "asafoetida", "asian greens", "asian noodles", "asparagus", "aubergine", "avocado", "avocado oil", "avocado spread", "bacon", "baking powder", "baking soda", "balsamic vinegar", "bamboo shoots", "banana", "barberry", "barley", "barramundi", "basil basmati rice", "bay leaves", "bean shoots", "bean sprouts", "beans", "beef", "beef stock", "beetroot", "berries", "besan", "black eyed beans", "blackberries", "blood oranges", "blue cheese", "blue eye trevalla", "blue swimmer crab", "blueberries", "bocconcini", "bok choy", "bonito flakes", "bonza", "borlotti beans", "bran", "brazil nut", "bread", "brie", "broccoli", "broccolini", "brown flour", "brown mushrooms", "brown rice", "brown rice vinegar", "brussels sprouts", "buckwheat", "buckwheat flour", "buckwheat noodles", "bulghur", "bush tomato", "butter", "butter beans", "buttermilk", "butternut lettuce", "butternut pumpkin", "cabbage", "cacao", "cake", "calamari", "camellia tea oil", "camembert", "camomile", "candle nut", "cannellini beans", "canola oil", "cantaloupe", "capers", "capsicum", "caraway seed", "cardamom", "carob carrot", "carrot", "cashews", "cassia bark", "cauliflower", "cavalo", "cayenne", "celery", "celery seed", "cheddar", "cherries", "chestnut", "chia seeds", "chicken", "chicken stock", "chickory", "chickpea", "chilli pepper", "chinese cabbage", "chinese five spice", "chives", "choy sum", "cinnamon", "clams", "cloves", "cocoa powder", "coconut", "coconut oil", "coconut water", "coffee", "common cultivated mushrooms", "corella pear", "coriander leaves", "coriander seed", "corn oil", "corn syrup", "corn tortilla", "cornichons", "cornmeal", "cos lettuce", "cottage cheese", "cous cous", "crabs", "cranberry", "cream", "cream cheese", "cucumber", "cumin", "cumquat", "currants", "curry leaves", "curry powder", "custard apples", "dandelion", "dark chocolate", "dashi", "dates", "dill", "dragonfruit", "dried apricots", "dried chinese broccoli", "duck", "edam", "edamame", "eggplant", "eggs", "elderberry", "endive", "english spinach", "enoki mushrooms", "extra virgin olive oil", "farmed prawns", "feijoa", "fennel", "fennel seeds", "fenugreek", "feta", "figs", "file powder", "fingerlime", "fish sauce", "fish stock", "flat mushrooms", "flathead", "flaxseed", "flaxseed oil", "flounder", "flour", "freekeh", "french eschallots", "fresh chillies", "fromage blanc", "fruit", "galangal", "garam masala", "garlic", "goat cheese", "goat milk", "goji berry", "grape seed oil", "grapefruit", "grapes", "green beans", "green pepper", "green tea", "green tea noodles", "greenwheat freekeh", "gruyere", "guava", "gula melaka", "haloumi", "ham", "haricot beans", "harissa", "hazelnut", "hijiki", "hiramasa kingfish", "hokkien noodles", "honey", "honeydew melon", "horseradish", "hot smoked salmon", "hummus", "iceberg lettuce", "incaberries", "jarrahdale pumpkin", "jasmine rice", "jelly", "jerusalem artichoke", "jewfish", "jicama", "juniper berries", "kale", "kangaroo", "kecap manis", "kenchur", "kidney beans", "kidneys", "kiwi berries", "kiwi fruit", "kohlrabi", "kokam", "kombu", "koshihikari rice", "kudzu", "kumera", "lamb", "lavender flowers", "leeks", "lemon", "lemongrass", "lentils", "lettuce", "licorice", "lime leaves", "limes", "liver", "lobster", "longan", "loquats", "lotus root", "lychees", "macadamia nut", "macadamia oil", "mace", "mackerel", "mahi mahi", "mahlab", "malt vinegar", "mandarins", "mango", "mangosteens", "maple syrup", "margarine", "marigold", "marjoram", "mastic", "melon", "milk", "milk chocolate", "mint", "miso", "molasses", "monkfish", "morwong", "mountain bread", "mozzarella", "muesli", "mulberries", "mullet", "mung beans", "mussels", "mustard", "mustard seed", "nashi pear", "nasturtium", "nectarines", "nori", "nutmeg", "nutritional yeast", "nuts", "oat flour", "oatmeal", "oats", "octopus", "okra", "olive oil", "olives", "omega spread", "onion", "oranges", "oregano", "oyster mushrooms", "oyster sauce", "oysters", "pandanus leaves", "papaw", "papaya", "paprik", "parmesan cheese", "parrotfish", "parsley", "parsnip", "passionfruit", "pasta", "peaches", "peanuts", "pear", "pear juice", "pears", "peas", "pecan nut", "pecorino", "pepitas", "peppercorns", "peppermint", "peppers", "persimmon", "pine nut", "pineapple", "pinto beans", "pistachio nut", "plums", "polenta", "pomegranate", "poppy seed", "porcini mushrooms", "pork", "potato flour", "potatoes", "provolone", "prunes", "pumpkin", "pumpkin seed", "purple carrot", "purple rice", "quark", "quince", "quinoa", "radicchio", "radish", "raisin", "raspberry", "red cabbage", "red lentils", "red pepper", "red wine", "red wine vinegar", "redfish", "rhubarb", "rice flour", "rice noodles", "rice paper", "rice syrup", "ricemilk", "ricotta", "rockmelon", "rose water", "rosemary", "rye", "rye bread", "safflower oil", "saffron", "sage", "sake", "salmon", "sardines", "sausages", "scallops", "sea salt", "semolina", "sesame oil", "sesame seeds", "shark", "shiitake mushrooms", "silverbeet", "slivered almonds", "smoked trout", "snapper", "snowpea sprouts", "snowpeas", "soba", "sour dough bread", "soy", "soy beans", "soy flour", "soy milk", "soy sauce", "soymilk", "spearmint", "spelt", "spelt bread", "spinach", "spring onions", "sprouts", "squash", "squid", "star anise", "star fruit", "starfruit", "stevia", "strawberries", "sugar", "sultanas", "sun-dried tomatoes", "sunflower oil", "sunflower seeds", "sweet chilli sauce", "sweet potato", "swiss chard", "swordfish", "szechuan pepperberry", "tabasco", "tahini", "taleggio cheese", "tamari", "tamarillo", "tangelo", "tapioca", "tapioca flour", "tarragon", "tea", "tea oil", "tempeh", "thyme", "tinned", "tofu", "tom yum", "tomatoes", "trout", "tuna", "turkey", "turmeric", "turnips", "unbleached flour", "vanilla beans", "vegetable oil", "vegetable spaghetti", "vegetable stock", "vermicelli noodles", "vinegar", "wakame", "walnut", "warehou", "wasabi", "water", "watercress", "watermelon", "wattleseed", "wheat", "wheatgrass juice", "white bread", "white flour", "white rice", "white wine", "white wine vinegar", "whiting wild rice", "wholegrain bread", "wholemeal", "wholewheat flour", "william pear", "yeast", "yellow papaw", "yellowtail kingfish", "yoghurt", "yogurt", "zucchini"];
|
|
13620
13641
|
var Se$1 = ["beef", "chicken", "crocodile", "duck", "emu", "goose", "kangaroo", "lamb", "ostrich", "pigeon", "pork", "quail", "rabbit", "salmon", "turkey", "venison"];
|
|
13621
13642
|
var ke$1 = ["achiote seed", "ajwain seed", "ajwan seed", "allspice", "amchoor", "anise", "anise star", "aniseed", "annatto seed", "arrowroot", "asafoetida", "baharat", "balti masala", "balti stir fry mix", "basil", "bay leaves", "bbq", "caraway seed", "cardamom", "cassia", "cayenne pepper", "celery", "chamomile", "chervil", "chilli", "chilli pepper", "chillies", "china star", "chives", "cinnamon", "cloves", "colombo", "coriander", "cumin", "curly leaf parsley", "curry", "dhansak", "dill", "fennel seed", "fenugreek", "fines herbes", "five spice", "french lavender", "galangal", "garam masala", "garlic", "german chamomile", "ginger", "green cardamom", "herbes de provence", "jalfrezi", "jerk", "kaffir leaves", "korma", "lavender", "lemon grass", "lemon pepper", "lime leaves", "liquorice root", "mace", "mango", "marjoram", "methi", "mint", "mustard", "nutmeg", "onion seed", "orange zest", "oregano", "paprika", "parsley", "pepper", "peppercorns", "pimento", "piri piri", "poppy seed", "pot marjoram", "poudre de colombo", "ras-el-hanout", "rice paper", "rogan josh", "rose baie", "rosemary", "saffron", "sage", "sesame seed", "spearmint", "sumac", "sweet basil", "sweet laurel", "tagine", "tandoori masala", "tarragon", "thyme", "tikka masala", "turmeric", "vanilla", "zahtar"];
|
|
13622
13643
|
var fe$1 = ["artichoke", "arugula", "asian greens", "asparagus", "bean shoots", "bean sprouts", "beans", "beetroot", "bok choy", "broccoli", "broccolini", "brussels sprouts", "butternut lettuce", "cabbage", "capers", "carob carrot", "carrot", "cauliflower", "celery", "chilli pepper", "chinese cabbage", "chives", "cornichons", "cos lettuce", "cucumber", "dried chinese broccoli", "eggplant", "endive", "english spinach", "french eschallots", "fresh chillies", "garlic", "green beans", "green pepper", "hijiki", "iceberg lettuce", "jerusalem artichoke", "jicama", "kale", "kohlrabi", "leeks", "lettuce", "okra", "onion", "parsnip", "peas", "peppers", "potatoes", "pumpkin", "purple carrot", "radicchio", "radish", "raspberry", "red cabbage", "red pepper", "rhubarb", "snowpea sprouts", "spinach", "squash", "sun dried tomatoes", "sweet potato", "swiss chard", "turnips", "zucchini"];
|
|
13623
|
-
var lr$1 = { adjective: me$1, description_pattern: he$1, dish: ye$1, dish_pattern: pe$1, ethnic_category: ge$1, fruit: be$1, ingredient: Ce
|
|
13644
|
+
var lr$1 = { adjective: me$1, description_pattern: he$1, dish: ye$1, dish_pattern: pe$1, ethnic_category: ge$1, fruit: be$1, ingredient: Ce, meat: Se$1, spice: ke$1, vegetable: fe$1 }, ve$1 = lr$1;
|
|
13624
13645
|
var Ae$1 = ["1080p", "auxiliary", "back-end", "bluetooth", "cross-platform", "digital", "haptic", "mobile", "multi-byte", "neural", "online", "open-source", "optical", "primary", "redundant", "solid state", "virtual", "wireless"];
|
|
13625
13646
|
var Be$1 = ["backing up", "bypassing", "calculating", "compressing", "connecting", "copying", "generating", "hacking", "indexing", "navigating", "overriding", "parsing", "programming", "quantifying", "synthesizing", "transmitting"];
|
|
13626
|
-
var Te = ["alarm", "application", "array", "bandwidth", "bus", "capacitor", "card", "circuit", "driver", "feed", "firewall", "hard drive", "interface", "matrix", "microchip", "monitor", "panel", "pixel", "port", "program", "protocol", "sensor", "system", "transmitter"];
|
|
13647
|
+
var Te$1 = ["alarm", "application", "array", "bandwidth", "bus", "capacitor", "card", "circuit", "driver", "feed", "firewall", "hard drive", "interface", "matrix", "microchip", "monitor", "panel", "pixel", "port", "program", "protocol", "sensor", "system", "transmitter"];
|
|
13627
13648
|
var Me$1 = ["I'll {{verb}} the {{adjective}} {{abbreviation}} {{noun}}, that should {{noun}} the {{abbreviation}} {{noun}}!", "If we {{verb}} the {{noun}}, we can get to the {{abbreviation}} {{noun}} through the {{adjective}} {{abbreviation}} {{noun}}!", "The {{abbreviation}} {{noun}} is down, {{verb}} the {{adjective}} {{noun}} so we can {{verb}} the {{abbreviation}} {{noun}}!", "Try to {{verb}} the {{abbreviation}} {{noun}}, maybe it will {{verb}} the {{adjective}} {{noun}}!", "Use the {{adjective}} {{abbreviation}} {{noun}}, then you can {{verb}} the {{adjective}} {{noun}}!", "We need to {{verb}} the {{adjective}} {{abbreviation}} {{noun}}!", "You can't {{verb}} the {{noun}} without {{ingverb}} the {{adjective}} {{abbreviation}} {{noun}}!", "{{ingverb}} the {{noun}} won't do anything, we need to {{verb}} the {{adjective}} {{abbreviation}} {{noun}}!"];
|
|
13628
13649
|
var we$1 = ["back up", "bypass", "calculate", "compress", "connect", "copy", "generate", "hack", "index", "input", "navigate", "override", "parse", "program", "quantify", "reboot", "synthesize", "transmit"];
|
|
13629
|
-
var sr$1 = { adjective: Ae$1, ingverb: Be$1, noun: Te, phrase: Me$1, verb: we$1 }, Le$1 = sr$1;
|
|
13650
|
+
var sr$1 = { adjective: Ae$1, ingverb: Be$1, noun: Te$1, phrase: Me$1, verb: we$1 }, Le$1 = sr$1;
|
|
13630
13651
|
var De$1 = ["biz", "com", "info", "name", "net", "org"];
|
|
13631
13652
|
var Re$1 = ["example.com", "example.net", "example.org"];
|
|
13632
13653
|
var Pe$1 = ["gmail.com", "hotmail.com", "yahoo.com"];
|
|
@@ -13675,7 +13696,7 @@ var Sa = { generic: ["Dr.", "Miss", "Mr.", "Mrs.", "Ms."], female: ["Dr.", "Miss
|
|
|
13675
13696
|
var ka = ["female", "male"];
|
|
13676
13697
|
var fa = ["Jr.", "Sr.", "I", "II", "III", "IV", "V", "MD", "DDS", "PhD", "DVM"];
|
|
13677
13698
|
var va = ["Aquarius", "Pisces", "Aries", "Taurus", "Gemini", "Cancer", "Leo", "Virgo", "Libra", "Scorpio", "Sagittarius", "Capricorn"];
|
|
13678
|
-
var yr = { bio_part: ta, bio_pattern: la, bio_supporter: sa, first_name: da, gender: ua, job_area: ca, job_descriptor: ma, job_title_pattern: ha, job_type: ya, last_name: pa, last_name_pattern: ga, middle_name: ba, name: Ca, prefix: Sa, sex: ka, suffix: fa, western_zodiac_sign: va }, Aa = yr;
|
|
13699
|
+
var yr$1 = { bio_part: ta, bio_pattern: la, bio_supporter: sa, first_name: da, gender: ua, job_area: ca, job_descriptor: ma, job_title_pattern: ha, job_type: ya, last_name: pa, last_name_pattern: ga, middle_name: ba, name: Ca, prefix: Sa, sex: ka, suffix: fa, western_zodiac_sign: va }, Aa = yr$1;
|
|
13679
13700
|
var Ba = ["!##-!##-####", "(!##) !##-####", "1-!##-!##-####", "!##.!##.####", "!##-!##-#### x###", "(!##) !##-#### x###", "1-!##-!##-#### x###", "!##.!##.#### x###", "!##-!##-#### x####", "(!##) !##-#### x####", "1-!##-!##-#### x####", "!##.!##.#### x####", "!##-!##-#### x#####", "(!##) !##-#### x#####", "1-!##-!##-#### x#####", "!##.!##.#### x#####"];
|
|
13680
13701
|
var Ta = ["+1!##!######"];
|
|
13681
13702
|
var Ma = ["(!##) !##-####"];
|
|
@@ -13700,11 +13721,11 @@ var Va = ["yuck", "oh", "phooey", "blah", "boo", "whoa", "yowza", "huzzah", "boo
|
|
|
13700
13721
|
var Ya = ["CD", "SUV", "abacus", "academics", "accelerator", "accompanist", "account", "accountability", "acquaintance", "ad", "adaptation", "address", "adrenalin", "adult", "advancement", "advertisement", "adviser", "affect", "affiliate", "aftermath", "agreement", "airbus", "aircraft", "airline", "airmail", "airman", "airport", "alb", "alert", "allegation", "alliance", "alligator", "allocation", "almighty", "amendment", "amnesty", "analogy", "angle", "annual", "antelope", "anticodon", "apparatus", "appliance", "approach", "apricot", "arcade", "archaeology", "armchair", "armoire", "asset", "assist", "atrium", "attraction", "availability", "avalanche", "awareness", "babushka", "backbone", "backburn", "bakeware", "bandwidth", "bar", "barge", "baritone", "barracks", "baseboard", "basket", "bathhouse", "bathrobe", "battle", "begonia", "behest", "bell", "bench", "bend", "beret", "best-seller", "bid", "bidet", "bin", "birdbath", "birdcage", "birth", "blight", "blossom", "blowgun", "bob", "bog", "bonfire", "bonnet", "bookcase", "bookend", "boulevard", "bourgeoisie", "bowler", "bowling", "boyfriend", "brace", "bracelet", "bran", "breastplate", "brief", "brochure", "brook", "brush", "bug", "bump", "bungalow", "cafe", "cake", "calculus", "cannon", "cantaloupe", "cap", "cappelletti", "captain", "caption", "carboxyl", "cardboard", "carnival", "case", "casement", "cash", "casket", "cassava", "castanet", "catalyst", "cauliflower", "cellar", "celsius", "cemetery", "ceramic", "ceramics", "certification", "chainstay", "chairperson", "challenge", "championship", "chap", "chapel", "character", "characterization", "charlatan", "charm", "chasuble", "cheese", "cheetah", "chiffonier", "chops", "chow", "cinder", "cinema", "circumference", "citizen", "clamp", "clavicle", "cleaner", "climb", "co-producer", "coal", "coast", "cod", "coil", "coin", "coliseum", "collaboration", "collectivization", "colon", "colonialism", "comestible", "commercial", "commodity", "community", "comparison", "completion", "complication", "compromise", "concentration", "configuration", "confusion", "conservation", "conservative", "consistency", "contractor", "contrail", "convection", "conversation", "cook", "coordination", "cop-out", "cope", "cork", "cornet", "corporation", "corral", "cosset", "costume", "couch", "council", "councilman", "countess", "courtroom", "cow", "creator", "creature", "crest", "cricket", "crocodile", "cross-contamination", "cruelty", "cuckoo", "curl", "custody", "custom", "cutlet", "cutover", "cycle", "daddy", "dandelion", "dash", "daughter", "dead", "decision", "deck", "declaration", "decongestant", "decryption", "deduction", "deed", "deer", "defendant", "density", "department", "dependency", "deployment", "depot", "derby", "descendant", "descent", "design", "designation", "desk", "detective", "devastation", "developing", "developmental", "devil", "diagram", "digestive", "digit", "dime", "director", "disadvantage", "disappointment", "disclosure", "disconnection", "discourse", "dish", "disk", "disposer", "distinction", "diver", "diversity", "dividend", "divine", "doing", "doorpost", "doubter", "draft", "draw", "dream", "dredger", "dress", "drive", "drug", "duffel", "dulcimer", "dusk", "duster", "dwell", "e-mail", "earth", "ecliptic", "ectoderm", "edge", "editor", "effector", "eggplant", "electronics", "elevation", "elevator", "elver", "embarrassment", "embossing", "emergent", "encouragement", "entry", "epic", "equal", "essence", "eternity", "ethyl", "euphonium", "event", "exasperation", "excess", "executor", "exhaust", "expansion", "expense", "experience", "exploration", "extension", "extent", "exterior", "eyebrow", "eyeliner", "farm", "farmer", "fat", "fax", "feather", "fedora", "fellow", "fen", "fencing", "ferret", "festival", "fibre", "filter", "final", "finding", "finer", "finger", "fireplace", "fisherman", "fishery", "fit", "flame", "flat", "fledgling", "flight", "flint", "flood", "flu", "fog", "fold", "folklore", "follower", "following", "foodstuffs", "footrest", "forage", "forager", "forgery", "fork", "formamide", "formation", "formula", "fort", "fowl", "fraudster", "freckle", "freezing", "freight", "fuel", "fun", "fund", "fundraising", "futon", "gallery", "galoshes", "gastropod", "gazebo", "gerbil", "ghost", "giant", "gift", "giggle", "glider", "gloom", "goat", "godfather", "godparent", "going", "goodwill", "governance", "government", "gown", "gradient", "graffiti", "grandpa", "grandson", "granny", "grass", "gray", "gripper", "grouper", "guacamole", "guard", "guidance", "guide", "gym", "gymnast", "habit", "haircut", "halt", "hamburger", "hammock", "handful", "handle", "handover", "harp", "haversack", "hawk", "heartache", "heartbeat", "heating", "hello", "help", "hepatitis", "heroine", "hexagon", "hierarchy", "hippodrome", "honesty", "hoof", "hope", "horde", "hornet", "horst", "hose", "hospitalization", "hovel", "hovercraft", "hubris", "humidity", "humor", "hundred", "hunger", "hunt", "husband", "hutch", "hydrant", "hydrocarbon", "hydrolyse", "hydrolyze", "hyena", "hygienic", "hyphenation", "ice-cream", "icebreaker", "igloo", "ignorance", "illusion", "impact", "import", "importance", "impostor", "in-joke", "incandescence", "independence", "individual", "information", "injunction", "innovation", "insolence", "inspection", "instance", "institute", "instruction", "instructor", "integer", "intellect", "intent", "interchange", "interior", "intervention", "interviewer", "invite", "iridescence", "issue", "jacket", "jazz", "jellyfish", "jet", "jogging", "joy", "juggernaut", "jump", "jungle", "junior", "jury", "kettledrum", "kick", "kielbasa", "kinase", "king", "kiss", "kit", "knickers", "knight", "knitting", "knuckle", "label", "labourer", "lace", "lady", "lamp", "language", "larva", "lashes", "laughter", "lava", "lawmaker", "lay", "leading", "league", "legend", "legging", "legislature", "lender", "license", "lid", "lieu", "lifestyle", "lift", "linseed", "litter", "loaf", "lobster", "longboat", "lotion", "lounge", "louse", "lox", "loyalty", "luck", "lyre", "maestro", "mainstream", "maintainer", "majority", "makeover", "making", "mallard", "management", "manner", "mantua", "marathon", "march", "marimba", "marketplace", "marksman", "markup", "marten", "massage", "masterpiece", "mathematics", "meadow", "meal", "meander", "meatloaf", "mechanic", "median", "membership", "mentor", "merit", "metabolite", "metal", "middle", "midwife", "milestone", "millet", "minion", "minister", "minor", "minority", "mixture", "mobility", "molasses", "mom", "moment", "monasticism", "monocle", "monster", "morbidity", "morning", "mortise", "mountain", "mouser", "mousse", "mozzarella", "muscat", "mythology", "napkin", "necklace", "nectarine", "negotiation", "nephew", "nerve", "netsuke", "newsletter", "newsprint", "newsstand", "nightlife", "noon", "nougat", "nucleotidase", "nudge", "numeracy", "numeric", "nun", "obedience", "obesity", "object", "obligation", "ocelot", "octave", "offset", "oil", "omelet", "onset", "opera", "operating", "optimal", "orchid", "order", "ostrich", "other", "outlaw", "outrun", "outset", "overcoat", "overheard", "overload", "ownership", "pacemaker", "packaging", "paintwork", "palate", "pants", "pantyhose", "papa", "parade", "parsnip", "partridge", "passport", "pasta", "patroller", "pear", "pearl", "pecan", "pendant", "peninsula", "pension", "peony", "pepper", "perfection", "permafrost", "perp", "petal", "petticoat", "pharmacopoeia", "phrase", "pick", "piglet", "pigpen", "pigsty", "pile", "pillbox", "pillow", "pilot", "pine", "pinstripe", "place", "plain", "planula", "plastic", "platter", "platypus", "pleasure", "pliers", "plugin", "plumber", "pneumonia", "pocket-watch", "poetry", "polarisation", "polyester", "pomelo", "pop", "poppy", "popularity", "populist", "porter", "possession", "postbox", "precedent", "premeditation", "premier", "premise", "premium", "pressure", "presume", "priesthood", "printer", "privilege", "procurement", "produce", "programme", "prohibition", "promise", "pronoun", "providence", "provider", "provision", "publication", "publicity", "pulse", "punctuation", "pupil", "puppet", "puritan", "quart", "quinoa", "quit", "railway", "range", "rationale", "ravioli", "rawhide", "reach", "reasoning", "reboot", "receptor", "recommendation", "reconsideration", "recovery", "redesign", "relative", "release", "remark", "reorganisation", "repeat", "replacement", "reporter", "representation", "republican", "request", "requirement", "reservation", "resolve", "resource", "responsibility", "restaurant", "retention", "retrospectivity", "reward", "ribbon", "rim", "riser", "roadway", "role", "rosemary", "roundabout", "rubric", "ruin", "rule", "runway", "rust", "safe", "sailor", "saloon", "sand", "sandbar", "sanity", "sarong", "sauerkraut", "saw", "scaffold", "scale", "scarification", "scenario", "schedule", "schnitzel", "scholarship", "scorn", "scorpion", "scout", "scrap", "scratch", "seafood", "seagull", "seal", "season", "secrecy", "secret", "section", "sediment", "self-confidence", "sermon", "sesame", "settler", "shadowbox", "shark", "shipper", "shore", "shoulder", "sideboard", "siege", "sightseeing", "signature", "silk", "simple", "singing", "skean", "skeleton", "skyline", "skyscraper", "slide", "slime", "slipper", "smog", "smoke", "sock", "soliloquy", "solution", "solvency", "someplace", "sonar", "sonata", "sonnet", "soup", "soybean", "space", "spear", "spirit", "spork", "sport", "spring", "sprinkles", "squid", "stall", "starboard", "statue", "status", "stay", "steak", "steeple", "step", "step-mother", "sticker", "stir-fry", "stitcher", "stock", "stool", "story", "strait", "stranger", "strategy", "straw", "stump", "subexpression", "submitter", "subsidy", "substitution", "suitcase", "summary", "summer", "sunbeam", "sundae", "supplier", "surface", "sushi", "suspension", "sustenance", "swanling", "swath", "sweatshop", "swim", "swine", "swing", "switch", "switchboard", "swordfish", "synergy", "t-shirt", "tabletop", "tackle", "tail", "tapioca", "taro", "tarragon", "taxicab", "teammate", "technician", "technologist", "tectonics", "tenant", "tenement", "tennis", "tentacle", "teriyaki", "term", "testimonial", "testing", "thigh", "thongs", "thorn", "thread", "thunderbolt", "thyme", "tinderbox", "toaster", "tomatillo", "tomb", "tomography", "tool", "tooth", "toothbrush", "toothpick", "topsail", "traditionalism", "traffic", "translation", "transom", "transparency", "trash", "travel", "tray", "trench", "tribe", "tributary", "trick", "trolley", "tuba", "tuber", "tune-up", "turret", "tusk", "tuxedo", "typeface", "typewriter", "unblinking", "underneath", "underpants", "understanding", "unibody", "unique", "unit", "utilization", "valentine", "validity", "valley", "valuable", "vanadyl", "vein", "velocity", "venom", "version", "verve", "vestment", "veto", "viability", "vibraphone", "vibration", "vicinity", "video", "violin", "vision", "vista", "vol", "volleyball", "wafer", "waist", "wallaby", "warming", "wasabi", "waterspout", "wear", "wedding", "whack", "whale", "wheel", "widow", "wilderness", "willow", "window", "wombat", "word", "worth", "wriggler", "yak", "yarmulke", "yeast", "yin", "yogurt", "zebra", "zen"];
|
|
13701
13722
|
var ja = ["a", "abaft", "aboard", "about", "above", "absent", "across", "afore", "after", "against", "along", "alongside", "amid", "amidst", "among", "amongst", "an", "anenst", "anti", "apropos", "apud", "around", "as", "aside", "astride", "at", "athwart", "atop", "barring", "before", "behind", "below", "beneath", "beside", "besides", "between", "beyond", "but", "by", "circa", "concerning", "considering", "despite", "down", "during", "except", "excepting", "excluding", "failing", "following", "for", "forenenst", "from", "given", "in", "including", "inside", "into", "lest", "like", "mid", "midst", "minus", "modulo", "near", "next", "notwithstanding", "of", "off", "on", "onto", "opposite", "out", "outside", "over", "pace", "past", "per", "plus", "pro", "qua", "regarding", "round", "sans", "save", "since", "than", "the", "through", "throughout", "till", "times", "to", "toward", "towards", "under", "underneath", "unlike", "until", "unto", "up", "upon", "versus", "via", "vice", "with", "within", "without", "worth"];
|
|
13702
13723
|
var qa = ["abnegate", "abscond", "abseil", "absolve", "accentuate", "accept", "access", "accessorise", "accompany", "account", "accredit", "achieve", "acknowledge", "acquire", "adjourn", "adjudge", "admonish", "adumbrate", "advocate", "afford", "airbrush", "ameliorate", "amend", "amount", "anaesthetise", "analyse", "anesthetize", "anneal", "annex", "antagonize", "ape", "apologise", "apostrophize", "appertain", "appreciate", "appropriate", "approximate", "arbitrate", "archive", "arraign", "arrange", "ascertain", "ascribe", "assail", "atomize", "attend", "attest", "attribute", "augment", "avow", "axe", "baa", "banish", "bank", "baptise", "battle", "beard", "beep", "behold", "belabor", "bemuse", "besmirch", "bestride", "better", "bewail", "bicycle", "bide", "bind", "biodegrade", "blacken", "blaspheme", "bleach", "blend", "blink", "bliss", "bloom", "bludgeon", "bobble", "boggle", "bolster", "book", "boom", "bootleg", "border", "bore", "boss", "braid", "brand", "brandish", "break", "breed", "broadcast", "broadside", "brood", "browse", "buck", "burgeon", "bus", "butter", "buzzing", "camouflage", "cannibalise", "canter", "cap", "capitalise", "capitalize", "capsize", "card", "carouse", "carp", "carpool", "catalog", "catalyze", "catch", "categorise", "cease", "celebrate", "censor", "certify", "char", "charter", "chase", "chatter", "chime", "chip", "christen", "chromakey", "chunder", "chunter", "cinch", "circle", "circulate", "circumnavigate", "clamor", "clamour", "claw", "cleave", "clinch", "clinking", "clone", "clonk", "coagulate", "coexist", "coincide", "collaborate", "colligate", "colorize", "colour", "comb", "come", "commandeer", "commemorate", "communicate", "compete", "conceal", "conceptualize", "conclude", "concrete", "condense", "cone", "confide", "confirm", "confiscate", "confound", "confute", "congregate", "conjecture", "connect", "consign", "construe", "contradict", "contrast", "contravene", "controvert", "convalesce", "converse", "convince", "convoke", "coop", "cop", "corner", "covenant", "cow", "crackle", "cram", "crank", "creak", "creaking", "cripple", "croon", "cross", "crumble", "crystallize", "culminate", "culture", "curry", "curse", "customise", "cycle", "dally", "dampen", "darn", "debit", "debut", "decide", "decode", "decouple", "decriminalize", "deduce", "deduct", "deflate", "deflect", "deform", "defrag", "degenerate", "degrease", "delete", "delight", "deliquesce", "demob", "demobilise", "democratize", "demonstrate", "denitrify", "deny", "depart", "depend", "deplore", "deploy", "deprave", "depute", "dereference", "describe", "desecrate", "deselect", "destock", "detain", "develop", "devise", "dial", "dicker", "digitize", "dilate", "disapprove", "disarm", "disbar", "discontinue", "disgorge", "dishearten", "dishonor", "disinherit", "dislocate", "dispense", "display", "dispose", "disrespect", "dissemble", "ditch", "divert", "dock", "doodle", "downchange", "downshift", "dowse", "draft", "drag", "drain", "dramatize", "drowse", "drum", "dwell", "economise", "edge", "efface", "egg", "eke", "electrify", "embalm", "embed", "embody", "emboss", "emerge", "emphasise", "emphasize", "emulsify", "encode", "endow", "enfold", "engage", "engender", "enhance", "enlist", "enrage", "enrich", "enroll", "entice", "entomb", "entrench", "entwine", "equate", "essay", "etch", "eulogise", "even", "evince", "exacerbate", "exaggerate", "exalt", "exempt", "exonerate", "expatiate", "explode", "expostulate", "extract", "extricate", "eyeglasses", "fabricate", "facilitate", "factorise", "factorize", "fail", "fall", "familiarize", "fashion", "father", "fathom", "fax", "federate", "feminize", "fence", "fess", "fictionalize", "fiddle", "fidget", "fill", "flash", "fleck", "flight", "floodlight", "floss", "fluctuate", "fluff", "fly", "focalise", "foot", "forearm", "forecast", "foretell", "forgather", "forgo", "fork", "form", "forswear", "founder", "fraternise", "fray", "frizz", "fumigate", "function", "furlough", "fuss", "gad", "gallivant", "galvanize", "gape", "garage", "garrote", "gasp", "gestate", "give", "glimmer", "glisten", "gloat", "gloss", "glow", "gnash", "gnaw", "goose", "govern", "grade", "graduate", "graft", "grok", "guest", "guilt", "gulp", "gum", "gurn", "gust", "gut", "guzzle", "ham", "harangue", "harvest", "hassle", "haul", "haze", "headline", "hearten", "heighten", "highlight", "hoick", "hold", "hole", "hollow", "holster", "home", "homeschool", "hoot", "horn", "horse", "hotfoot", "house", "hover", "howl", "huddle", "huff", "hunger", "hunt", "husk", "hype", "hypothesise", "hypothesize", "idle", "ignite", "imagineer", "impact", "impanel", "implode", "incinerate", "incline", "inculcate", "industrialize", "ingratiate", "inhibit", "inject", "innovate", "inscribe", "insert", "insist", "inspect", "institute", "institutionalize", "intend", "intermarry", "intermesh", "intermix", "internalise", "internalize", "internationalize", "intrigue", "inure", "inveigle", "inventory", "investigate", "irk", "iterate", "jaywalk", "jell", "jeopardise", "jiggle", "jive", "joint", "jot", "jut", "keel", "knife", "knit", "know", "kowtow", "lack", "lampoon", "large", "leap", "lecture", "legitimize", "lend", "libel", "liberalize", "license", "ligate", "list", "lobotomise", "lock", "log", "loose", "low", "lowball", "machine", "magnetize", "major", "make", "malfunction", "manage", "manipulate", "maroon", "masculinize", "mash", "mask", "masquerade", "massage", "masticate", "materialise", "matter", "maul", "memorise", "merge", "mesh", "metabolise", "microblog", "microchip", "micromanage", "militate", "mill", "minister", "minor", "misappropriate", "miscalculate", "misfire", "misjudge", "miskey", "mismatch", "mispronounce", "misread", "misreport", "misspend", "mob", "mobilise", "mobilize", "moisten", "mooch", "moor", "moralise", "mortar", "mosh", "mothball", "motivate", "motor", "mould", "mount", "muddy", "mummify", "mutate", "mystify", "nab", "narrate", "narrowcast", "nasalise", "nauseate", "navigate", "neaten", "neck", "neglect", "norm", "notarize", "object", "obscure", "observe", "obsess", "obstruct", "obtrude", "offend", "offset", "option", "orchestrate", "orient", "orientate", "outbid", "outdo", "outfit", "outflank", "outfox", "outnumber", "outrank", "outrun", "outsource", "overburden", "overcharge", "overcook", "overdub", "overfeed", "overload", "overplay", "overproduce", "overreact", "override", "overspend", "overstay", "overtrain", "overvalue", "overwork", "own", "oxidise", "oxidize", "oxygenate", "pace", "pack", "pale", "pant", "paralyse", "parody", "part", "pause", "pave", "penalise", "persecute", "personalise", "perspire", "pertain", "peter", "pike", "pillory", "pinion", "pip", "pity", "pivot", "pixellate", "plagiarise", "plait", "plan", "please", "pluck", "ponder", "popularize", "portray", "prance", "preclude", "preheat", "prejudge", "preregister", "presell", "preside", "pretend", "print", "prioritize", "probate", "probe", "proceed", "procrastinate", "profane", "progress", "proliferate", "proofread", "propound", "proselytise", "provision", "pry", "publicize", "puff", "pull", "pulp", "pulverize", "purse", "put", "putrefy", "quadruple", "quaff", "quantify", "quarrel", "quash", "quaver", "question", "quiet", "quintuple", "quip", "quit", "rag", "rally", "ramp", "randomize", "rationalise", "rationalize", "ravage", "ravel", "react", "readies", "readjust", "readmit", "ready", "reapply", "rear", "reassemble", "rebel", "reboot", "reborn", "rebound", "rebuff", "rebuild", "rebuke", "recede", "reckon", "reclassify", "recompense", "reconstitute", "record", "recount", "redact", "redevelop", "redound", "redraw", "redress", "reel", "refer", "reference", "refine", "reflate", "refute", "regulate", "reiterate", "rejigger", "rejoin", "rekindle", "relaunch", "relieve", "remand", "remark", "reopen", "reorient", "replicate", "repossess", "represent", "reprimand", "reproach", "reprove", "repurpose", "requite", "reschedule", "resort", "respray", "restructure", "retool", "retract", "revere", "revitalise", "revoke", "reword", "rewrite", "ride", "ridge", "rim", "ring", "rise", "rival", "roger", "rosin", "rot", "rout", "row", "rue", "rule", "safeguard", "sashay", "sate", "satirise", "satirize", "satisfy", "saturate", "savour", "scale", "scamper", "scar", "scare", "scarper", "scent", "schematise", "scheme", "schlep", "scoff", "scoop", "scope", "scotch", "scowl", "scrabble", "scram", "scramble", "scrape", "screw", "scruple", "scrutinise", "scuffle", "scuttle", "search", "secularize", "see", "segregate", "sell", "sense", "sensitize", "sequester", "serenade", "serialize", "serve", "service", "settle", "sew", "shaft", "sham", "shampoo", "shanghai", "shear", "sheathe", "shell", "shinny", "shirk", "shoot", "shoulder", "shout", "shovel", "showboat", "shred", "shrill", "shudder", "shush", "sidetrack", "sign", "silt", "sin", "singe", "sit", "sizzle", "skateboard", "ski", "slake", "slap", "slather", "sleet", "slink", "slip", "slope", "slump", "smarten", "smuggle", "snack", "sneak", "sniff", "snoop", "snow", "snowplow", "snuggle", "soap", "solace", "solder", "solicit", "source", "spark", "spattering", "spectacles", "spectate", "spellcheck", "spew", "spice", "spirit", "splash", "splay", "split", "splosh", "splurge", "spook", "square", "squirm", "stabilise", "stable", "stack", "stage", "stake", "starch", "state", "statement", "stiffen", "stigmatize", "sting", "stint", "stoop", "store", "storyboard", "stratify", "structure", "stuff", "stunt", "substantiate", "subtract", "suckle", "suffice", "suffocate", "summarise", "sun", "sunbathe", "sunder", "sup", "surge", "surprise", "swat", "swathe", "sway", "swear", "swelter", "swerve", "swill", "swing", "symbolise", "synthesise", "syringe", "table", "tabulate", "tag", "tame", "tank", "tankful", "tarry", "task", "taxicab", "team", "telescope", "tenant", "terraform", "terrorise", "testify", "think", "throbbing", "thump", "tighten", "toady", "toe", "tough", "tousle", "traduce", "train", "transcend", "transplant", "trash", "treasure", "treble", "trek", "trial", "tromp", "trouser", "trust", "tune", "tut", "twine", "twist", "typify", "unbalance", "uncork", "uncover", "underachieve", "undergo", "underplay", "unearth", "unfreeze", "unfurl", "unlearn", "unscramble", "unzip", "uproot", "upsell", "usher", "vacation", "vamoose", "vanish", "vary", "veg", "venture", "verify", "vet", "veto", "volunteer", "vulgarise", "waft", "wallop", "waltz", "warp", "wash", "waver", "weary", "weatherize", "wedge", "weep", "weight", "welcome", "westernise", "westernize", "while", "whine", "whisper", "whistle", "whitewash", "whup", "wilt", "wing", "wire", "wisecrack", "wolf", "wound", "wring", "writ", "yak", "yawn", "yearn", "yuppify"];
|
|
13703
|
-
var kr
|
|
13704
|
-
var fr$1 = { airline: o, animal: k, app: B$1, book: P$1, cell_phone: W$1, color: F
|
|
13724
|
+
var kr = { adjective: Oa, adverb: xa, conjunction: za, interjection: Va, noun: Ya, preposition: ja, verb: qa }, Ua = kr;
|
|
13725
|
+
var fr$1 = { airline: o, animal: k, app: B$1, book: P$1, cell_phone: W$1, color: F, commerce: I$1, company: U$1, database: _$1, date: $$1, finance: ce$1, food: ve$1, hacker: Le$1, internet: He$1, location: Qe$1, lorem: $e$1, metadata: ea, music: ia, person: Aa, phone_number: La, science: Pa, team: Ga, vehicle: Ka, word: Ua }, ys = fr$1;
|
|
13705
13726
|
var m = class extends Error {
|
|
13706
13727
|
};
|
|
13707
|
-
function
|
|
13728
|
+
function Ne(i) {
|
|
13708
13729
|
let e2 = Object.getPrototypeOf(i);
|
|
13709
13730
|
do {
|
|
13710
13731
|
for (let r2 of Object.getOwnPropertyNames(e2)) typeof i[r2] == "function" && r2 !== "constructor" && (i[r2] = i[r2].bind(i));
|
|
@@ -13714,7 +13735,7 @@ function Ce(i) {
|
|
|
13714
13735
|
var x$1 = class x {
|
|
13715
13736
|
constructor(e2) {
|
|
13716
13737
|
this.faker = e2;
|
|
13717
|
-
|
|
13738
|
+
Ne(this);
|
|
13718
13739
|
}
|
|
13719
13740
|
}, p = class extends x$1 {
|
|
13720
13741
|
constructor(r2) {
|
|
@@ -13722,7 +13743,7 @@ var x$1 = class x {
|
|
|
13722
13743
|
this.faker = r2;
|
|
13723
13744
|
}
|
|
13724
13745
|
};
|
|
13725
|
-
var
|
|
13746
|
+
var De = ((t2) => (t2.Narrowbody = "narrowbody", t2.Regional = "regional", t2.Widebody = "widebody", t2))(De || {}), xr = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"], Ar = ["0", "O", "1", "I", "L"], Er = { regional: 20, narrowbody: 35, widebody: 60 }, wr = { regional: ["A", "B", "C", "D"], narrowbody: ["A", "B", "C", "D", "E", "F"], widebody: ["A", "B", "C", "D", "E", "F", "G", "H", "J", "K"] }, G = class extends p {
|
|
13726
13747
|
airport() {
|
|
13727
13748
|
return this.faker.helpers.arrayElement(this.faker.definitions.airline.airport);
|
|
13728
13749
|
}
|
|
@@ -13734,22 +13755,22 @@ var Ne = ((t2) => (t2.Narrowbody = "narrowbody", t2.Regional = "regional", t2.Wi
|
|
|
13734
13755
|
}
|
|
13735
13756
|
recordLocator(e2 = {}) {
|
|
13736
13757
|
let { allowNumerics: r2 = false, allowVisuallySimilarCharacters: t2 = false } = e2, a2 = [];
|
|
13737
|
-
return r2 || a2.push(...
|
|
13758
|
+
return r2 || a2.push(...xr), t2 || a2.push(...Ar), this.faker.string.alphanumeric({ length: 6, casing: "upper", exclude: a2 });
|
|
13738
13759
|
}
|
|
13739
13760
|
seat(e2 = {}) {
|
|
13740
|
-
let { aircraftType: r2 = "narrowbody" } = e2, t2 =
|
|
13761
|
+
let { aircraftType: r2 = "narrowbody" } = e2, t2 = Er[r2], a2 = wr[r2], n2 = this.faker.number.int({ min: 1, max: t2 }), o2 = this.faker.helpers.arrayElement(a2);
|
|
13741
13762
|
return `${n2}${o2}`;
|
|
13742
13763
|
}
|
|
13743
13764
|
aircraftType() {
|
|
13744
|
-
return this.faker.helpers.enumValue(
|
|
13765
|
+
return this.faker.helpers.enumValue(De);
|
|
13745
13766
|
}
|
|
13746
13767
|
flightNumber(e2 = {}) {
|
|
13747
13768
|
let { length: r2 = { min: 1, max: 4 }, addLeadingZeros: t2 = false } = e2, a2 = this.faker.string.numeric({ length: r2, allowLeadingZeros: false });
|
|
13748
13769
|
return t2 ? a2.padStart(4, "0") : a2;
|
|
13749
13770
|
}
|
|
13750
13771
|
};
|
|
13751
|
-
var
|
|
13752
|
-
function
|
|
13772
|
+
var Re = ((n2) => (n2.SRGB = "sRGB", n2.DisplayP3 = "display-p3", n2.REC2020 = "rec2020", n2.A98RGB = "a98-rgb", n2.ProphotoRGB = "prophoto-rgb", n2))(Re || {}), Le = ((c2) => (c2.RGB = "rgb", c2.RGBA = "rgba", c2.HSL = "hsl", c2.HSLA = "hsla", c2.HWB = "hwb", c2.CMYK = "cmyk", c2.LAB = "lab", c2.LCH = "lch", c2.COLOR = "color", c2))(Le || {});
|
|
13773
|
+
function Sr(i, e2) {
|
|
13753
13774
|
let { prefix: r2, casing: t2 } = e2;
|
|
13754
13775
|
switch (t2) {
|
|
13755
13776
|
case "upper": {
|
|
@@ -13763,13 +13784,13 @@ function wr(i, e2) {
|
|
|
13763
13784
|
}
|
|
13764
13785
|
return r2 && (i = r2 + i), i;
|
|
13765
13786
|
}
|
|
13766
|
-
function
|
|
13787
|
+
function Pe(i) {
|
|
13767
13788
|
return i.map((r2) => {
|
|
13768
13789
|
if (r2 % 1 !== 0) {
|
|
13769
13790
|
let a2 = new ArrayBuffer(4);
|
|
13770
13791
|
new DataView(a2).setFloat32(0, r2);
|
|
13771
13792
|
let n2 = new Uint8Array(a2);
|
|
13772
|
-
return
|
|
13793
|
+
return Pe([...n2]).replaceAll(" ", "");
|
|
13773
13794
|
}
|
|
13774
13795
|
return (r2 >>> 0).toString(2).padStart(8, "0");
|
|
13775
13796
|
}).join(" ");
|
|
@@ -13777,7 +13798,7 @@ function Le(i) {
|
|
|
13777
13798
|
function A(i) {
|
|
13778
13799
|
return Math.round(i * 100);
|
|
13779
13800
|
}
|
|
13780
|
-
function
|
|
13801
|
+
function Mr(i, e2 = "rgb", r2 = "sRGB") {
|
|
13781
13802
|
switch (e2) {
|
|
13782
13803
|
case "rgba":
|
|
13783
13804
|
return `rgba(${i[0]}, ${i[1]}, ${i[2]}, ${i[3]})`;
|
|
@@ -13802,14 +13823,14 @@ function Sr(i, e2 = "rgb", r2 = "sRGB") {
|
|
|
13802
13823
|
function D(i, e2, r2 = "rgb", t2 = "sRGB") {
|
|
13803
13824
|
switch (e2) {
|
|
13804
13825
|
case "css":
|
|
13805
|
-
return
|
|
13826
|
+
return Mr(i, r2, t2);
|
|
13806
13827
|
case "binary":
|
|
13807
|
-
return
|
|
13828
|
+
return Pe(i);
|
|
13808
13829
|
case "decimal":
|
|
13809
13830
|
return i;
|
|
13810
13831
|
}
|
|
13811
13832
|
}
|
|
13812
|
-
var
|
|
13833
|
+
var O = class extends p {
|
|
13813
13834
|
human() {
|
|
13814
13835
|
return this.faker.helpers.arrayElement(this.faker.definitions.color.human);
|
|
13815
13836
|
}
|
|
@@ -13817,14 +13838,14 @@ var G = class extends p {
|
|
|
13817
13838
|
return this.faker.helpers.arrayElement(this.faker.definitions.color.space);
|
|
13818
13839
|
}
|
|
13819
13840
|
cssSupportedFunction() {
|
|
13820
|
-
return this.faker.helpers.enumValue(
|
|
13841
|
+
return this.faker.helpers.enumValue(Le);
|
|
13821
13842
|
}
|
|
13822
13843
|
cssSupportedSpace() {
|
|
13823
|
-
return this.faker.helpers.enumValue(
|
|
13844
|
+
return this.faker.helpers.enumValue(Re);
|
|
13824
13845
|
}
|
|
13825
13846
|
rgb(e2 = {}) {
|
|
13826
13847
|
let { format: r2 = "hex", includeAlpha: t2 = false, prefix: a2 = "#", casing: n2 = "lower" } = e2, o2, s2 = "rgb";
|
|
13827
|
-
return r2 === "hex" ? (o2 = this.faker.string.hexadecimal({ length: t2 ? 8 : 6, prefix: "" }), o2 =
|
|
13848
|
+
return r2 === "hex" ? (o2 = this.faker.string.hexadecimal({ length: t2 ? 8 : 6, prefix: "" }), o2 = Sr(o2, { prefix: a2, casing: n2 }), o2) : (o2 = Array.from({ length: 3 }, () => this.faker.number.int(255)), t2 && (o2.push(this.faker.number.float({ multipleOf: 0.01 })), s2 = "rgba"), D(o2, r2, s2));
|
|
13828
13849
|
}
|
|
13829
13850
|
cmyk(e2 = {}) {
|
|
13830
13851
|
let { format: r2 = "decimal" } = e2, t2 = Array.from({ length: 4 }, () => this.faker.number.float({ multipleOf: 0.01 }));
|
|
@@ -13855,12 +13876,12 @@ var G = class extends p {
|
|
|
13855
13876
|
return D(a2, r2, "color", t2);
|
|
13856
13877
|
}
|
|
13857
13878
|
};
|
|
13858
|
-
var
|
|
13859
|
-
var
|
|
13879
|
+
var de = ((a2) => (a2.Legacy = "legacy", a2.Segwit = "segwit", a2.Bech32 = "bech32", a2.Taproot = "taproot", a2))(de || {}), Be = ((r2) => (r2.Mainnet = "mainnet", r2.Testnet = "testnet", r2))(Be || {}), ve = { legacy: { prefix: { mainnet: "1", testnet: "m" }, length: { min: 26, max: 34 }, casing: "mixed", exclude: "0OIl" }, segwit: { prefix: { mainnet: "3", testnet: "2" }, length: { min: 26, max: 34 }, casing: "mixed", exclude: "0OIl" }, bech32: { prefix: { mainnet: "bc1", testnet: "tb1" }, length: { min: 42, max: 42 }, casing: "lower", exclude: "1bBiIoO" }, taproot: { prefix: { mainnet: "bc1p", testnet: "tb1p" }, length: { min: 62, max: 62 }, casing: "lower", exclude: "1bBiIoO" } };
|
|
13880
|
+
var ge = typeof Buffer > "u" || !$e("base64") ? (i) => {
|
|
13860
13881
|
let e2 = new TextEncoder().encode(i), r2 = Array.from(e2, (t2) => String.fromCodePoint(t2)).join("");
|
|
13861
13882
|
return btoa(r2);
|
|
13862
|
-
} : (i) => Buffer.from(i).toString("base64"),
|
|
13863
|
-
function
|
|
13883
|
+
} : (i) => Buffer.from(i).toString("base64"), ye = typeof Buffer > "u" || !$e("base64url") ? (i) => ge(i).replaceAll("+", "-").replaceAll("/", "_").replaceAll(/=+$/g, "") : (i) => Buffer.from(i).toString("base64url");
|
|
13884
|
+
function $e(i) {
|
|
13864
13885
|
try {
|
|
13865
13886
|
return typeof Buffer.from("test").toString(i) == "string";
|
|
13866
13887
|
} catch {
|
|
@@ -13871,21 +13892,21 @@ function w(i) {
|
|
|
13871
13892
|
let { deprecated: e2, since: r2, until: t2, proposed: a2 } = i, n2 = `[@faker-js/faker]: ${e2} is deprecated`;
|
|
13872
13893
|
r2 && (n2 += ` since v${r2}`), t2 && (n2 += ` and will be removed in v${t2}`), a2 && (n2 += `. Please use ${a2} instead`), console.warn(`${n2}.`);
|
|
13873
13894
|
}
|
|
13874
|
-
var
|
|
13875
|
-
var
|
|
13876
|
-
function
|
|
13895
|
+
var Tr = Object.fromEntries([["А", "A"], ["а", "a"], ["Б", "B"], ["б", "b"], ["В", "V"], ["в", "v"], ["Г", "G"], ["г", "g"], ["Д", "D"], ["д", "d"], ["ъе", "ye"], ["Ъе", "Ye"], ["ъЕ", "yE"], ["ЪЕ", "YE"], ["Е", "E"], ["е", "e"], ["Ё", "Yo"], ["ё", "yo"], ["Ж", "Zh"], ["ж", "zh"], ["З", "Z"], ["з", "z"], ["И", "I"], ["и", "i"], ["ый", "iy"], ["Ый", "Iy"], ["ЫЙ", "IY"], ["ыЙ", "iY"], ["Й", "Y"], ["й", "y"], ["К", "K"], ["к", "k"], ["Л", "L"], ["л", "l"], ["М", "M"], ["м", "m"], ["Н", "N"], ["н", "n"], ["О", "O"], ["о", "o"], ["П", "P"], ["п", "p"], ["Р", "R"], ["р", "r"], ["С", "S"], ["с", "s"], ["Т", "T"], ["т", "t"], ["У", "U"], ["у", "u"], ["Ф", "F"], ["ф", "f"], ["Х", "Kh"], ["х", "kh"], ["Ц", "Ts"], ["ц", "ts"], ["Ч", "Ch"], ["ч", "ch"], ["Ш", "Sh"], ["ш", "sh"], ["Щ", "Sch"], ["щ", "sch"], ["Ъ", ""], ["ъ", ""], ["Ы", "Y"], ["ы", "y"], ["Ь", ""], ["ь", ""], ["Э", "E"], ["э", "e"], ["Ю", "Yu"], ["ю", "yu"], ["Я", "Ya"], ["я", "ya"]]), Cr = Object.fromEntries([["α", "a"], ["β", "v"], ["γ", "g"], ["δ", "d"], ["ε", "e"], ["ζ", "z"], ["η", "i"], ["θ", "th"], ["ι", "i"], ["κ", "k"], ["λ", "l"], ["μ", "m"], ["ν", "n"], ["ξ", "ks"], ["ο", "o"], ["π", "p"], ["ρ", "r"], ["σ", "s"], ["τ", "t"], ["υ", "y"], ["φ", "f"], ["χ", "x"], ["ψ", "ps"], ["ω", "o"], ["ά", "a"], ["έ", "e"], ["ί", "i"], ["ό", "o"], ["ύ", "y"], ["ή", "i"], ["ώ", "o"], ["ς", "s"], ["ϊ", "i"], ["ΰ", "y"], ["ϋ", "y"], ["ΐ", "i"], ["Α", "A"], ["Β", "B"], ["Γ", "G"], ["Δ", "D"], ["Ε", "E"], ["Ζ", "Z"], ["Η", "I"], ["Θ", "TH"], ["Ι", "I"], ["Κ", "K"], ["Λ", "L"], ["Μ", "M"], ["Ν", "N"], ["Ξ", "KS"], ["Ο", "O"], ["Π", "P"], ["Ρ", "R"], ["Σ", "S"], ["Τ", "T"], ["Υ", "Y"], ["Φ", "F"], ["Χ", "X"], ["Ψ", "PS"], ["Ω", "O"], ["Ά", "A"], ["Έ", "E"], ["Ί", "I"], ["Ό", "O"], ["Ύ", "Y"], ["Ή", "I"], ["Ώ", "O"], ["Ϊ", "I"], ["Ϋ", "Y"]]), Nr = Object.fromEntries([["ء", "e"], ["آ", "a"], ["أ", "a"], ["ؤ", "w"], ["إ", "i"], ["ئ", "y"], ["ا", "a"], ["ب", "b"], ["ة", "t"], ["ت", "t"], ["ث", "th"], ["ج", "j"], ["ح", "h"], ["خ", "kh"], ["د", "d"], ["ذ", "dh"], ["ر", "r"], ["ز", "z"], ["س", "s"], ["ش", "sh"], ["ص", "s"], ["ض", "d"], ["ط", "t"], ["ظ", "z"], ["ع", "e"], ["غ", "gh"], ["ـ", "_"], ["ف", "f"], ["ق", "q"], ["ك", "k"], ["ل", "l"], ["م", "m"], ["ن", "n"], ["ه", "h"], ["و", "w"], ["ى", "a"], ["ي", "y"], ["َ", "a"], ["ُ", "u"], ["ِ", "i"]]), Dr = Object.fromEntries([["ա", "a"], ["Ա", "A"], ["բ", "b"], ["Բ", "B"], ["գ", "g"], ["Գ", "G"], ["դ", "d"], ["Դ", "D"], ["ե", "ye"], ["Ե", "Ye"], ["զ", "z"], ["Զ", "Z"], ["է", "e"], ["Է", "E"], ["ը", "y"], ["Ը", "Y"], ["թ", "t"], ["Թ", "T"], ["ժ", "zh"], ["Ժ", "Zh"], ["ի", "i"], ["Ի", "I"], ["լ", "l"], ["Լ", "L"], ["խ", "kh"], ["Խ", "Kh"], ["ծ", "ts"], ["Ծ", "Ts"], ["կ", "k"], ["Կ", "K"], ["հ", "h"], ["Հ", "H"], ["ձ", "dz"], ["Ձ", "Dz"], ["ղ", "gh"], ["Ղ", "Gh"], ["ճ", "tch"], ["Ճ", "Tch"], ["մ", "m"], ["Մ", "M"], ["յ", "y"], ["Յ", "Y"], ["ն", "n"], ["Ն", "N"], ["շ", "sh"], ["Շ", "Sh"], ["ո", "vo"], ["Ո", "Vo"], ["չ", "ch"], ["Չ", "Ch"], ["պ", "p"], ["Պ", "P"], ["ջ", "j"], ["Ջ", "J"], ["ռ", "r"], ["Ռ", "R"], ["ս", "s"], ["Ս", "S"], ["վ", "v"], ["Վ", "V"], ["տ", "t"], ["Տ", "T"], ["ր", "r"], ["Ր", "R"], ["ց", "c"], ["Ց", "C"], ["ու", "u"], ["ՈՒ", "U"], ["Ու", "U"], ["փ", "p"], ["Փ", "P"], ["ք", "q"], ["Ք", "Q"], ["օ", "o"], ["Օ", "O"], ["ֆ", "f"], ["Ֆ", "F"], ["և", "yev"]]), Rr = Object.fromEntries([["چ", "ch"], ["ک", "k"], ["گ", "g"], ["پ", "p"], ["ژ", "zh"], ["ی", "y"]]), Lr = Object.fromEntries([["א", "a"], ["ב", "b"], ["ג", "g"], ["ד", "d"], ["ה", "h"], ["ו", "v"], ["ז", "z"], ["ח", "ch"], ["ט", "t"], ["י", "y"], ["כ", "k"], ["ך", "kh"], ["ל", "l"], ["ם", "m"], ["מ", "m"], ["ן", "n"], ["נ", "n"], ["ס", "s"], ["ע", "a"], ["פ", "f"], ["ף", "ph"], ["צ", "ts"], ["ץ", "ts"], ["ק", "k"], ["ר", "r"], ["ש", "sh"], ["ת", "t"], ["ו", "v"]]), ke = { ...Tr, ...Cr, ...Nr, ...Rr, ...Dr, ...Lr };
|
|
13896
|
+
var Pr = ((u2) => (u2.Any = "any", u2.Loopback = "loopback", u2.PrivateA = "private-a", u2.PrivateB = "private-b", u2.PrivateC = "private-c", u2.TestNet1 = "test-net-1", u2.TestNet2 = "test-net-2", u2.TestNet3 = "test-net-3", u2.LinkLocal = "link-local", u2.Multicast = "multicast", u2))(Pr || {}), Br = { any: "0.0.0.0/0", loopback: "127.0.0.0/8", "private-a": "10.0.0.0/8", "private-b": "172.16.0.0/12", "private-c": "192.168.0.0/16", "test-net-1": "192.0.2.0/24", "test-net-2": "198.51.100.0/24", "test-net-3": "203.0.113.0/24", "link-local": "169.254.0.0/16", multicast: "224.0.0.0/4" };
|
|
13897
|
+
function Ie(i) {
|
|
13877
13898
|
return /^[a-z][a-z-]*[a-z]$/i.exec(i) !== null;
|
|
13878
13899
|
}
|
|
13879
|
-
function
|
|
13900
|
+
function _e(i, e2) {
|
|
13880
13901
|
let r2 = i.helpers.slugify(e2);
|
|
13881
|
-
if (
|
|
13902
|
+
if (Ie(r2)) return r2;
|
|
13882
13903
|
let t2 = i.helpers.slugify(i.lorem.word());
|
|
13883
|
-
return
|
|
13904
|
+
return Ie(t2) ? t2 : i.string.alpha({ casing: "lower", length: i.number.int({ min: 4, max: 8 }) });
|
|
13884
13905
|
}
|
|
13885
|
-
function
|
|
13906
|
+
function xe(i, e2) {
|
|
13886
13907
|
return Math.floor((i.number.int(256) + e2) / 2).toString(16).padStart(2, "0");
|
|
13887
13908
|
}
|
|
13888
|
-
var
|
|
13909
|
+
var U = class extends p {
|
|
13889
13910
|
email(e2 = {}) {
|
|
13890
13911
|
let { firstName: r2, lastName: t2, provider: a2 = this.faker.helpers.arrayElement(this.faker.definitions.internet.free_email), allowSpecialCharacters: n2 = false } = e2, o2 = this.username({ firstName: r2, lastName: t2 });
|
|
13891
13912
|
if (o2 = o2.replaceAll(/[^A-Za-z0-9._+-]+/g, ""), o2 = o2.substring(0, 50), n2) {
|
|
@@ -13906,7 +13927,7 @@ var O = class extends p {
|
|
|
13906
13927
|
a2 || s2.push(() => `${r2}${o2}`);
|
|
13907
13928
|
let l2 = this.faker.helpers.arrayElement(s2)();
|
|
13908
13929
|
return l2 = l2.normalize("NFKD").replaceAll(/[\u0300-\u036F]/g, ""), l2 = [...l2].map((c2) => {
|
|
13909
|
-
if (
|
|
13930
|
+
if (ke[c2]) return ke[c2];
|
|
13910
13931
|
let u2 = c2.codePointAt(0) ?? Number.NaN;
|
|
13911
13932
|
return u2 < 128 ? c2 : u2.toString(36);
|
|
13912
13933
|
}).join(""), l2 = l2.toString().replaceAll("'", ""), l2 = l2.replaceAll(" ", ""), l2;
|
|
@@ -13938,14 +13959,14 @@ var O = class extends p {
|
|
|
13938
13959
|
return this.faker.helpers.arrayElement(this.faker.definitions.internet.domain_suffix);
|
|
13939
13960
|
}
|
|
13940
13961
|
domainWord() {
|
|
13941
|
-
let e2 =
|
|
13962
|
+
let e2 = _e(this.faker, this.faker.word.adjective()), r2 = _e(this.faker, this.faker.word.noun());
|
|
13942
13963
|
return `${e2}-${r2}`.toLowerCase();
|
|
13943
13964
|
}
|
|
13944
13965
|
ip() {
|
|
13945
13966
|
return this.faker.datatype.boolean() ? this.ipv4() : this.ipv6();
|
|
13946
13967
|
}
|
|
13947
13968
|
ipv4(e2 = {}) {
|
|
13948
|
-
let { network: r2 = "any", cidrBlock: t2 =
|
|
13969
|
+
let { network: r2 = "any", cidrBlock: t2 = Br[r2] } = e2;
|
|
13949
13970
|
if (!/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\/\d{1,2}$/.test(t2)) throw new m(`Invalid CIDR block provided: ${t2}. Must be in the format x.x.x.x/y.`);
|
|
13950
13971
|
let [a2, n2] = t2.split("/"), o2 = 4294967295 >>> Number.parseInt(n2), [s2, l2, c2, u2] = a2.split(".").map(Number), f2 = (s2 << 24 | l2 << 16 | c2 << 8 | u2) & ~o2, g2 = this.faker.number.int(o2), b2 = f2 | g2;
|
|
13951
13972
|
return [b2 >>> 24 & 255, b2 >>> 16 & 255, b2 >>> 8 & 255, b2 & 255].join(".");
|
|
@@ -13961,7 +13982,7 @@ var O = class extends p {
|
|
|
13961
13982
|
}
|
|
13962
13983
|
color(e2 = {}) {
|
|
13963
13984
|
w({ deprecated: "faker.internet.color()", proposed: "faker.color.rgb()", since: "9.6.0", until: "10.0.0" });
|
|
13964
|
-
let { redBase: r2 = 0, greenBase: t2 = 0, blueBase: a2 = 0 } = e2, n2 =
|
|
13985
|
+
let { redBase: r2 = 0, greenBase: t2 = 0, blueBase: a2 = 0 } = e2, n2 = xe(this.faker, r2), o2 = xe(this.faker, t2), s2 = xe(this.faker, a2);
|
|
13965
13986
|
return `#${n2}${o2}${s2}`;
|
|
13966
13987
|
}
|
|
13967
13988
|
mac(e2 = {}) {
|
|
@@ -13987,11 +14008,11 @@ var O = class extends p {
|
|
|
13987
14008
|
return this.faker.helpers.arrayElement(this.faker.definitions.internet.jwt_algorithm);
|
|
13988
14009
|
}
|
|
13989
14010
|
jwt(e2 = {}) {
|
|
13990
|
-
let { refDate: r2 = this.faker.defaultRefDate() } = e2, t2 = this.faker.date.recent({ refDate: r2 }), { header: a2 = { alg: this.jwtAlgorithm(), typ: "JWT" }, payload: n2 = { iat: Math.round(t2.valueOf() / 1e3), exp: Math.round(this.faker.date.soon({ refDate: t2 }).valueOf() / 1e3), nbf: Math.round(this.faker.date.anytime({ refDate: r2 }).valueOf() / 1e3), iss: this.faker.company.name(), sub: this.faker.string.uuid(), aud: this.faker.string.uuid(), jti: this.faker.string.uuid() } } = e2, o2 =
|
|
14011
|
+
let { refDate: r2 = this.faker.defaultRefDate() } = e2, t2 = this.faker.date.recent({ refDate: r2 }), { header: a2 = { alg: this.jwtAlgorithm(), typ: "JWT" }, payload: n2 = { iat: Math.round(t2.valueOf() / 1e3), exp: Math.round(this.faker.date.soon({ refDate: t2 }).valueOf() / 1e3), nbf: Math.round(this.faker.date.anytime({ refDate: r2 }).valueOf() / 1e3), iss: this.faker.company.name(), sub: this.faker.string.uuid(), aud: this.faker.string.uuid(), jti: this.faker.string.uuid() } } = e2, o2 = ye(JSON.stringify(a2)), s2 = ye(JSON.stringify(n2)), l2 = this.faker.string.alphanumeric(64);
|
|
13991
14012
|
return `${o2}.${s2}.${l2}`;
|
|
13992
14013
|
}
|
|
13993
14014
|
};
|
|
13994
|
-
var
|
|
14015
|
+
var Fe = ((r2) => (r2.Female = "female", r2.Male = "male", r2))(Fe || {});
|
|
13995
14016
|
function R(i, e2, r2) {
|
|
13996
14017
|
let { generic: t2, female: a2, male: n2 } = r2;
|
|
13997
14018
|
switch (e2) {
|
|
@@ -14003,7 +14024,7 @@ function R(i, e2, r2) {
|
|
|
14003
14024
|
return t2 ?? i.helpers.arrayElement([a2, n2]) ?? [];
|
|
14004
14025
|
}
|
|
14005
14026
|
}
|
|
14006
|
-
var
|
|
14027
|
+
var K = class extends p {
|
|
14007
14028
|
firstName(e2) {
|
|
14008
14029
|
return this.faker.helpers.arrayElement(R(this.faker, e2, this.faker.definitions.person.first_name));
|
|
14009
14030
|
}
|
|
@@ -14029,7 +14050,7 @@ var U = class extends p {
|
|
|
14029
14050
|
return this.faker.helpers.arrayElement(this.faker.definitions.person.sex);
|
|
14030
14051
|
}
|
|
14031
14052
|
sexType() {
|
|
14032
|
-
return this.faker.helpers.enumValue(
|
|
14053
|
+
return this.faker.helpers.enumValue(Fe);
|
|
14033
14054
|
}
|
|
14034
14055
|
bio() {
|
|
14035
14056
|
let { bio_pattern: e2 } = this.faker.definitions.person;
|
|
@@ -14057,29 +14078,29 @@ var U = class extends p {
|
|
|
14057
14078
|
return this.faker.helpers.arrayElement(this.faker.definitions.person.western_zodiac_sign);
|
|
14058
14079
|
}
|
|
14059
14080
|
};
|
|
14060
|
-
var
|
|
14061
|
-
function Fe(i) {
|
|
14062
|
-
return typeof i == "number" ? Ge(i) : $r(i);
|
|
14063
|
-
}
|
|
14081
|
+
var vr = 23283064365386963e-26, $r = 1 / 9007199254740992, { imul: Ee, trunc: we } = Math;
|
|
14064
14082
|
function Ge(i) {
|
|
14083
|
+
return typeof i == "number" ? Oe(i) : Ir(i);
|
|
14084
|
+
}
|
|
14085
|
+
function Oe(i) {
|
|
14065
14086
|
let e2 = Array.from({ length: 624 });
|
|
14066
14087
|
e2[0] = i;
|
|
14067
14088
|
for (let r2 = 1; r2 !== 624; ++r2) {
|
|
14068
14089
|
let t2 = e2[r2 - 1] ^ e2[r2 - 1] >>> 30;
|
|
14069
|
-
e2[r2] = Ee(
|
|
14090
|
+
e2[r2] = we(Ee(1812433253, t2) + r2);
|
|
14070
14091
|
}
|
|
14071
14092
|
return e2;
|
|
14072
14093
|
}
|
|
14073
|
-
function
|
|
14074
|
-
let e2 =
|
|
14094
|
+
function Ir(i) {
|
|
14095
|
+
let e2 = Oe(19650218), r2 = 1, t2 = 0;
|
|
14075
14096
|
for (let a2 = Math.max(624, i.length); a2 !== 0; --a2) {
|
|
14076
14097
|
let n2 = e2[r2 - 1] ^ e2[r2 - 1] >>> 30;
|
|
14077
|
-
e2[r2] =
|
|
14098
|
+
e2[r2] = we((e2[r2] ^ Ee(n2, 1664525)) + i[t2] + t2), r2++, t2++, r2 >= 624 && (e2[0] = e2[623], r2 = 1), t2 >= i.length && (t2 = 0);
|
|
14078
14099
|
}
|
|
14079
|
-
for (let a2 = 623; a2 !== 0; a2--) e2[r2] =
|
|
14100
|
+
for (let a2 = 623; a2 !== 0; a2--) e2[r2] = we((e2[r2] ^ Ee(e2[r2 - 1] ^ e2[r2 - 1] >>> 30, 1566083941)) - r2), r2++, r2 >= 624 && (e2[0] = e2[623], r2 = 1);
|
|
14080
14101
|
return e2[0] = 2147483648, e2;
|
|
14081
14102
|
}
|
|
14082
|
-
function
|
|
14103
|
+
function Ae(i) {
|
|
14083
14104
|
for (let r2 = 0; r2 !== 227; ++r2) {
|
|
14084
14105
|
let t2 = (i[r2] & 2147483648) + (i[r2 + 1] & 2147483647);
|
|
14085
14106
|
i[r2] = i[r2 + 397] ^ t2 >>> 1 ^ -(t2 & 1) & 2567483615;
|
|
@@ -14092,32 +14113,32 @@ function xe(i) {
|
|
|
14092
14113
|
return i[623] = i[396] ^ e2 >>> 1 ^ -(e2 & 1) & 2567483615, i;
|
|
14093
14114
|
}
|
|
14094
14115
|
var L = class {
|
|
14095
|
-
constructor(e2 = Math.random() * Number.MAX_SAFE_INTEGER, r2 =
|
|
14116
|
+
constructor(e2 = Math.random() * Number.MAX_SAFE_INTEGER, r2 = Ae(Ge(e2)), t2 = 0) {
|
|
14096
14117
|
this.states = r2;
|
|
14097
14118
|
this.index = t2;
|
|
14098
14119
|
}
|
|
14099
14120
|
nextU32() {
|
|
14100
14121
|
let e2 = this.states[this.index];
|
|
14101
|
-
return e2 ^= this.states[this.index] >>> 11, e2 ^= e2 << 7 & 2636928640, e2 ^= e2 << 15 & 4022730752, e2 ^= e2 >>> 18, ++this.index >= 624 && (this.states =
|
|
14122
|
+
return e2 ^= this.states[this.index] >>> 11, e2 ^= e2 << 7 & 2636928640, e2 ^= e2 << 15 & 4022730752, e2 ^= e2 >>> 18, ++this.index >= 624 && (this.states = Ae(this.states), this.index = 0), e2 >>> 0;
|
|
14102
14123
|
}
|
|
14103
14124
|
nextF32() {
|
|
14104
|
-
return this.nextU32() *
|
|
14125
|
+
return this.nextU32() * vr;
|
|
14105
14126
|
}
|
|
14106
14127
|
nextU53() {
|
|
14107
14128
|
let e2 = this.nextU32() >>> 5, r2 = this.nextU32() >>> 6;
|
|
14108
14129
|
return e2 * 67108864 + r2;
|
|
14109
14130
|
}
|
|
14110
14131
|
nextF53() {
|
|
14111
|
-
return this.nextU53() *
|
|
14132
|
+
return this.nextU53() * $r;
|
|
14112
14133
|
}
|
|
14113
14134
|
seed(e2) {
|
|
14114
|
-
this.states =
|
|
14135
|
+
this.states = Ae(Ge(e2)), this.index = 0;
|
|
14115
14136
|
}
|
|
14116
14137
|
};
|
|
14117
14138
|
function P() {
|
|
14118
14139
|
return Math.ceil(Math.random() * Number.MAX_SAFE_INTEGER);
|
|
14119
14140
|
}
|
|
14120
|
-
function
|
|
14141
|
+
function Ue(i = P()) {
|
|
14121
14142
|
let e2 = new L(i);
|
|
14122
14143
|
return { next() {
|
|
14123
14144
|
return e2.nextF53();
|
|
@@ -14125,7 +14146,7 @@ function Oe(i = P()) {
|
|
|
14125
14146
|
e2.seed(r2);
|
|
14126
14147
|
} };
|
|
14127
14148
|
}
|
|
14128
|
-
var
|
|
14149
|
+
var j = class extends x$1 {
|
|
14129
14150
|
boolean(e2 = {}) {
|
|
14130
14151
|
typeof e2 == "number" && (e2 = { probability: e2 });
|
|
14131
14152
|
let { probability: r2 = 0.5 } = e2;
|
|
@@ -14137,18 +14158,18 @@ function S(i, e2 = "refDate") {
|
|
|
14137
14158
|
if (Number.isNaN(r2.valueOf())) throw new m(`Invalid ${e2} date: ${i.toString()}`);
|
|
14138
14159
|
return r2;
|
|
14139
14160
|
}
|
|
14140
|
-
var
|
|
14161
|
+
var H = () => {
|
|
14141
14162
|
throw new m("You cannot edit the locale data on the faker instance");
|
|
14142
14163
|
};
|
|
14143
|
-
function
|
|
14164
|
+
function Ke(i) {
|
|
14144
14165
|
let e2 = {};
|
|
14145
14166
|
return new Proxy(i, { has() {
|
|
14146
14167
|
return true;
|
|
14147
14168
|
}, get(r2, t2) {
|
|
14148
|
-
return typeof t2 == "symbol" || t2 === "nodeType" ? r2[t2] : t2 in e2 ? e2[t2] : e2[t2] =
|
|
14149
|
-
}, set:
|
|
14169
|
+
return typeof t2 == "symbol" || t2 === "nodeType" ? r2[t2] : t2 in e2 ? e2[t2] : e2[t2] = _r(t2, r2[t2]);
|
|
14170
|
+
}, set: H, deleteProperty: H });
|
|
14150
14171
|
}
|
|
14151
|
-
function
|
|
14172
|
+
function V(i, ...e2) {
|
|
14152
14173
|
if (i === null) throw new m(`The locale data for '${e2.join(".")}' aren't applicable to this locale.
|
|
14153
14174
|
If you think this is a bug, please report it at: https://github.com/faker-js/faker`);
|
|
14154
14175
|
if (i === void 0) throw new m(`The locale data for '${e2.join(".")}' are missing in this locale.
|
|
@@ -14156,13 +14177,13 @@ function H(i, ...e2) {
|
|
|
14156
14177
|
Please contribute the missing data to the project or use a locale/Faker instance that has these data.
|
|
14157
14178
|
For more information see https://fakerjs.dev/guide/localization.html`);
|
|
14158
14179
|
}
|
|
14159
|
-
function
|
|
14180
|
+
function _r(i, e2 = {}) {
|
|
14160
14181
|
return new Proxy(e2, { has(r2, t2) {
|
|
14161
14182
|
return r2[t2] != null;
|
|
14162
14183
|
}, get(r2, t2) {
|
|
14163
14184
|
let a2 = r2[t2];
|
|
14164
|
-
return typeof t2 == "symbol" || t2 === "nodeType" ||
|
|
14165
|
-
}, set:
|
|
14185
|
+
return typeof t2 == "symbol" || t2 === "nodeType" || V(a2, i, t2.toString()), a2;
|
|
14186
|
+
}, set: H, deleteProperty: H });
|
|
14166
14187
|
}
|
|
14167
14188
|
var B = class extends x$1 {
|
|
14168
14189
|
anytime(e2 = {}) {
|
|
@@ -14221,7 +14242,7 @@ var B = class extends x$1 {
|
|
|
14221
14242
|
}
|
|
14222
14243
|
}
|
|
14223
14244
|
}
|
|
14224
|
-
},
|
|
14245
|
+
}, z = class extends B {
|
|
14225
14246
|
constructor(r2) {
|
|
14226
14247
|
super(r2);
|
|
14227
14248
|
this.faker = r2;
|
|
@@ -14230,33 +14251,33 @@ var B = class extends x$1 {
|
|
|
14230
14251
|
let { abbreviated: t2 = false, context: a2 = false } = r2, n2 = this.faker.definitions.date.month, o2;
|
|
14231
14252
|
t2 ? o2 = a2 && n2.abbr_context != null ? "abbr_context" : "abbr" : o2 = a2 && n2.wide_context != null ? "wide_context" : "wide";
|
|
14232
14253
|
let s2 = n2[o2];
|
|
14233
|
-
return
|
|
14254
|
+
return V(s2, "date.month", o2), this.faker.helpers.arrayElement(s2);
|
|
14234
14255
|
}
|
|
14235
14256
|
weekday(r2 = {}) {
|
|
14236
14257
|
let { abbreviated: t2 = false, context: a2 = false } = r2, n2 = this.faker.definitions.date.weekday, o2;
|
|
14237
14258
|
t2 ? o2 = a2 && n2.abbr_context != null ? "abbr_context" : "abbr" : o2 = a2 && n2.wide_context != null ? "wide_context" : "wide";
|
|
14238
14259
|
let s2 = n2[o2];
|
|
14239
|
-
return
|
|
14260
|
+
return V(s2, "date.weekday", o2), this.faker.helpers.arrayElement(s2);
|
|
14240
14261
|
}
|
|
14241
14262
|
timeZone() {
|
|
14242
14263
|
return this.faker.helpers.arrayElement(this.faker.definitions.date.time_zone);
|
|
14243
14264
|
}
|
|
14244
14265
|
};
|
|
14245
|
-
var
|
|
14246
|
-
function
|
|
14266
|
+
var Fr = /\.|\(/;
|
|
14267
|
+
function je(i, e2, r2 = [e2, e2.rawDefinitions]) {
|
|
14247
14268
|
if (i.length === 0) throw new m("Eval expression cannot be empty.");
|
|
14248
14269
|
if (r2.length === 0) throw new m("Eval entrypoints cannot be empty.");
|
|
14249
14270
|
let t2 = r2, a2 = i;
|
|
14250
14271
|
do {
|
|
14251
14272
|
let o2;
|
|
14252
|
-
a2.startsWith("(") ? [o2, t2] =
|
|
14273
|
+
a2.startsWith("(") ? [o2, t2] = Gr(a2, t2, i) : [o2, t2] = Ur(a2, t2), a2 = a2.substring(o2), t2 = t2.filter((s2) => s2 != null).map((s2) => Array.isArray(s2) ? e2.helpers.arrayElement(s2) : s2);
|
|
14253
14274
|
} while (a2.length > 0 && t2.length > 0);
|
|
14254
14275
|
if (t2.length === 0) throw new m(`Cannot resolve expression '${i}'`);
|
|
14255
14276
|
let n2 = t2[0];
|
|
14256
14277
|
return typeof n2 == "function" ? n2() : n2;
|
|
14257
14278
|
}
|
|
14258
|
-
function
|
|
14259
|
-
let [t2, a2] =
|
|
14279
|
+
function Gr(i, e2, r2) {
|
|
14280
|
+
let [t2, a2] = Or(i), n2 = i[t2 + 1];
|
|
14260
14281
|
switch (n2) {
|
|
14261
14282
|
case ".":
|
|
14262
14283
|
case "(":
|
|
@@ -14270,7 +14291,7 @@ Please remove the parentheses or replace the expression with an actual function.
|
|
|
14270
14291
|
${r2}
|
|
14271
14292
|
${" ".repeat(r2.length - i.length)}^`), o2))];
|
|
14272
14293
|
}
|
|
14273
|
-
function
|
|
14294
|
+
function Or(i) {
|
|
14274
14295
|
let e2 = i.indexOf(")", 1);
|
|
14275
14296
|
if (e2 === -1) throw new m(`Missing closing parenthesis in '${i}'`);
|
|
14276
14297
|
for (; e2 !== -1; ) {
|
|
@@ -14289,14 +14310,14 @@ function Gr(i) {
|
|
|
14289
14310
|
let r2 = i.substring(1, e2);
|
|
14290
14311
|
return [e2, [r2]];
|
|
14291
14312
|
}
|
|
14292
|
-
function
|
|
14293
|
-
let r2 =
|
|
14313
|
+
function Ur(i, e2) {
|
|
14314
|
+
let r2 = Fr.exec(i), t2 = ((r2 == null ? void 0 : r2[0]) ?? "") === ".", a2 = (r2 == null ? void 0 : r2.index) ?? i.length, n2 = i.substring(0, a2);
|
|
14294
14315
|
if (n2.length === 0) throw new m(`Expression parts cannot be empty in '${i}'`);
|
|
14295
14316
|
let o2 = i[a2 + 1];
|
|
14296
14317
|
if (t2 && (o2 == null || o2 === "." || o2 === "(")) throw new m(`Found dot without property name in '${i}'`);
|
|
14297
|
-
return [a2 + (t2 ? 1 : 0), e2.map((s2) =>
|
|
14318
|
+
return [a2 + (t2 ? 1 : 0), e2.map((s2) => Kr(s2, n2))];
|
|
14298
14319
|
}
|
|
14299
|
-
function
|
|
14320
|
+
function Kr(i, e2) {
|
|
14300
14321
|
switch (typeof i) {
|
|
14301
14322
|
case "function": {
|
|
14302
14323
|
try {
|
|
@@ -14312,11 +14333,11 @@ function Ur(i, e2) {
|
|
|
14312
14333
|
return;
|
|
14313
14334
|
}
|
|
14314
14335
|
}
|
|
14315
|
-
function
|
|
14316
|
-
let e2 =
|
|
14336
|
+
function He(i) {
|
|
14337
|
+
let e2 = jr(i.replace(/L?$/, "0"));
|
|
14317
14338
|
return e2 === 0 ? 0 : 10 - e2;
|
|
14318
14339
|
}
|
|
14319
|
-
function
|
|
14340
|
+
function jr(i) {
|
|
14320
14341
|
i = i.replaceAll(/[\s-]/g, "");
|
|
14321
14342
|
let e2 = 0, r2 = false;
|
|
14322
14343
|
for (let t2 = i.length - 1; t2 >= 0; t2--) {
|
|
@@ -14325,7 +14346,7 @@ function Kr(i) {
|
|
|
14325
14346
|
}
|
|
14326
14347
|
return e2 % 10;
|
|
14327
14348
|
}
|
|
14328
|
-
function
|
|
14349
|
+
function Ve(i, e2, r2, t2) {
|
|
14329
14350
|
let a2 = 1;
|
|
14330
14351
|
if (e2) switch (e2) {
|
|
14331
14352
|
case "?": {
|
|
@@ -14350,14 +14371,14 @@ function He(i, e2, r2, t2) {
|
|
|
14350
14371
|
else r2 != null && t2 != null ? a2 = i.number.int({ min: Number.parseInt(r2), max: Number.parseInt(t2) }) : r2 != null && t2 == null && (a2 = Number.parseInt(r2));
|
|
14351
14372
|
return a2;
|
|
14352
14373
|
}
|
|
14353
|
-
function
|
|
14374
|
+
function Hr(i, e2 = "") {
|
|
14354
14375
|
let r2 = /(.)\{(\d+),(\d+)\}/, t2 = /(.)\{(\d+)\}/, a2 = /\[(\d+)-(\d+)\]/, n2, o2, s2, l2, c2 = r2.exec(e2);
|
|
14355
14376
|
for (; c2 != null; ) n2 = Number.parseInt(c2[2]), o2 = Number.parseInt(c2[3]), n2 > o2 && (s2 = o2, o2 = n2, n2 = s2), l2 = i.number.int({ min: n2, max: o2 }), e2 = e2.slice(0, c2.index) + c2[1].repeat(l2) + e2.slice(c2.index + c2[0].length), c2 = r2.exec(e2);
|
|
14356
14377
|
for (c2 = t2.exec(e2); c2 != null; ) l2 = Number.parseInt(c2[2]), e2 = e2.slice(0, c2.index) + c2[1].repeat(l2) + e2.slice(c2.index + c2[0].length), c2 = t2.exec(e2);
|
|
14357
14378
|
for (c2 = a2.exec(e2); c2 != null; ) n2 = Number.parseInt(c2[1]), o2 = Number.parseInt(c2[2]), n2 > o2 && (s2 = o2, o2 = n2, n2 = s2), e2 = e2.slice(0, c2.index) + i.number.int({ min: n2, max: o2 }).toString() + e2.slice(c2.index + c2[0].length), c2 = a2.exec(e2);
|
|
14358
14379
|
return e2;
|
|
14359
14380
|
}
|
|
14360
|
-
function
|
|
14381
|
+
function Se(i, e2 = "", r2 = "#") {
|
|
14361
14382
|
let t2 = "";
|
|
14362
14383
|
for (let a2 = 0; a2 < e2.length; a2++) e2.charAt(a2) === r2 ? t2 += i.number.int(9) : e2.charAt(a2) === "!" ? t2 += i.number.int({ min: 2, max: 9 }) : t2 += e2.charAt(a2);
|
|
14363
14384
|
return t2;
|
|
@@ -14372,8 +14393,8 @@ var v = class extends x$1 {
|
|
|
14372
14393
|
return t2;
|
|
14373
14394
|
}
|
|
14374
14395
|
replaceCreditCardSymbols(e2 = "6453-####-####-####-###L", r2 = "#") {
|
|
14375
|
-
e2 =
|
|
14376
|
-
let t2 =
|
|
14396
|
+
e2 = Hr(this.faker, e2), e2 = Se(this.faker, e2, r2);
|
|
14397
|
+
let t2 = He(e2);
|
|
14377
14398
|
return e2.replace("L", String(t2));
|
|
14378
14399
|
}
|
|
14379
14400
|
fromRegExp(e2) {
|
|
@@ -14383,25 +14404,25 @@ var v = class extends x$1 {
|
|
|
14383
14404
|
let t2, a2, n2, o2 = /([.A-Za-z0-9])(?:\{(\d+)(?:,(\d+)|)\}|(\?|\*|\+))(?![^[]*]|[^{]*})/, s2 = o2.exec(e2);
|
|
14384
14405
|
for (; s2 != null; ) {
|
|
14385
14406
|
let f2 = s2[2], g2 = s2[3], b2 = s2[4];
|
|
14386
|
-
n2 =
|
|
14407
|
+
n2 = Ve(this.faker, b2, f2, g2);
|
|
14387
14408
|
let y2;
|
|
14388
14409
|
s2[1] === "." ? y2 = this.faker.string.alphanumeric(n2) : r2 ? y2 = this.faker.string.fromCharacters([s2[1].toLowerCase(), s2[1].toUpperCase()], n2) : y2 = s2[1].repeat(n2), e2 = e2.slice(0, s2.index) + y2 + e2.slice(s2.index + s2[0].length), s2 = o2.exec(e2);
|
|
14389
14410
|
}
|
|
14390
14411
|
let l2 = /(\d-\d|\w-\w|\d|\w|[-!@#$&()`.+,/"])/, c2 = /\[(\^|)(-|)(.+?)\](?:\{(\d+)(?:,(\d+)|)\}|(\?|\*|\+)|)/;
|
|
14391
14412
|
for (s2 = c2.exec(e2); s2 != null; ) {
|
|
14392
|
-
let f2 = s2[1] === "^", g2 = s2[2] === "-", b2 = s2[4], y2 = s2[5], N2 = s2[6], k2 = [],
|
|
14413
|
+
let f2 = s2[1] === "^", g2 = s2[2] === "-", b2 = s2[4], y2 = s2[5], N2 = s2[6], k2 = [], F2 = s2[3], C2 = l2.exec(F2);
|
|
14393
14414
|
for (g2 && k2.push(45); C2 != null; ) {
|
|
14394
14415
|
if (C2[0].includes("-")) {
|
|
14395
14416
|
let E2 = C2[0].split("-").map((d2) => d2.codePointAt(0) ?? Number.NaN);
|
|
14396
14417
|
if (t2 = E2[0], a2 = E2[1], t2 > a2) throw new m("Character range provided is out of order.");
|
|
14397
14418
|
for (let d2 = t2; d2 <= a2; d2++) if (r2 && Number.isNaN(Number(String.fromCodePoint(d2)))) {
|
|
14398
|
-
let
|
|
14399
|
-
k2.push(
|
|
14419
|
+
let Ce2 = String.fromCodePoint(d2);
|
|
14420
|
+
k2.push(Ce2.toUpperCase().codePointAt(0) ?? Number.NaN, Ce2.toLowerCase().codePointAt(0) ?? Number.NaN);
|
|
14400
14421
|
} else k2.push(d2);
|
|
14401
14422
|
} else r2 && Number.isNaN(Number(C2[0])) ? k2.push(C2[0].toUpperCase().codePointAt(0) ?? Number.NaN, C2[0].toLowerCase().codePointAt(0) ?? Number.NaN) : k2.push(C2[0].codePointAt(0) ?? Number.NaN);
|
|
14402
|
-
|
|
14423
|
+
F2 = F2.substring(C2[0].length), C2 = l2.exec(F2);
|
|
14403
14424
|
}
|
|
14404
|
-
if (n2 =
|
|
14425
|
+
if (n2 = Ve(this.faker, N2, b2, y2), f2) {
|
|
14405
14426
|
let E2 = -1;
|
|
14406
14427
|
for (let d2 = 48; d2 <= 57; d2++) {
|
|
14407
14428
|
if (E2 = k2.indexOf(d2), E2 > -1) {
|
|
@@ -14425,8 +14446,8 @@ var v = class extends x$1 {
|
|
|
14425
14446
|
k2.push(d2);
|
|
14426
14447
|
}
|
|
14427
14448
|
}
|
|
14428
|
-
let
|
|
14429
|
-
e2 = e2.slice(0, s2.index) +
|
|
14449
|
+
let kr2 = this.multiple(() => String.fromCodePoint(this.arrayElement(k2)), { count: n2 }).join("");
|
|
14450
|
+
e2 = e2.slice(0, s2.index) + kr2 + e2.slice(s2.index + s2[0].length), s2 = c2.exec(e2);
|
|
14430
14451
|
}
|
|
14431
14452
|
let u2 = /(.)\{(\d+),(\d+)\}/;
|
|
14432
14453
|
for (s2 = u2.exec(e2); s2 != null; ) {
|
|
@@ -14516,7 +14537,7 @@ var v = class extends x$1 {
|
|
|
14516
14537
|
let t2 = this.rangeToNumber(r2.count ?? 3);
|
|
14517
14538
|
return t2 <= 0 ? [] : Array.from({ length: t2 }, e2);
|
|
14518
14539
|
}
|
|
14519
|
-
},
|
|
14540
|
+
}, W = class extends v {
|
|
14520
14541
|
constructor(r2) {
|
|
14521
14542
|
super(r2);
|
|
14522
14543
|
this.faker = r2;
|
|
@@ -14525,11 +14546,105 @@ var v = class extends x$1 {
|
|
|
14525
14546
|
r2 = typeof r2 == "string" ? r2 : this.arrayElement(r2);
|
|
14526
14547
|
let t2 = r2.search(/{{[a-z]/), a2 = r2.indexOf("}}", t2);
|
|
14527
14548
|
if (t2 === -1 || a2 === -1) return r2;
|
|
14528
|
-
let o2 = r2.substring(t2 + 2, a2 + 2).replace("}}", "").replace("{{", ""), s2 =
|
|
14549
|
+
let o2 = r2.substring(t2 + 2, a2 + 2).replace("}}", "").replace("{{", ""), s2 = je(o2, this.faker), l2 = String(s2), c2 = r2.substring(0, t2) + l2 + r2.substring(a2 + 2);
|
|
14529
14550
|
return this.fake(c2);
|
|
14530
14551
|
}
|
|
14531
14552
|
};
|
|
14532
|
-
var
|
|
14553
|
+
var $ = class extends x$1 {
|
|
14554
|
+
latitude(e2 = {}) {
|
|
14555
|
+
let { max: r2 = 90, min: t2 = -90, precision: a2 = 4 } = e2;
|
|
14556
|
+
return this.faker.number.float({ min: t2, max: r2, fractionDigits: a2 });
|
|
14557
|
+
}
|
|
14558
|
+
longitude(e2 = {}) {
|
|
14559
|
+
let { max: r2 = 180, min: t2 = -180, precision: a2 = 4 } = e2;
|
|
14560
|
+
return this.faker.number.float({ max: r2, min: t2, fractionDigits: a2 });
|
|
14561
|
+
}
|
|
14562
|
+
nearbyGPSCoordinate(e2 = {}) {
|
|
14563
|
+
let { origin: r2, radius: t2 = 10, isMetric: a2 = false } = e2;
|
|
14564
|
+
if (r2 == null) return [this.latitude(), this.longitude()];
|
|
14565
|
+
let n2 = this.faker.number.float({ max: 2 * Math.PI, fractionDigits: 5 }), o2 = a2 ? t2 : t2 * 1.60934, l2 = this.faker.number.float({ max: o2, fractionDigits: 3 }) * 0.995, c2 = 4e4 / 360, u2 = l2 / c2, h2 = [r2[0] + Math.sin(n2) * u2, r2[1] + Math.cos(n2) * u2];
|
|
14566
|
+
return h2[0] = h2[0] % 180, (h2[0] < -90 || h2[0] > 90) && (h2[0] = Math.sign(h2[0]) * 180 - h2[0], h2[1] += 180), h2[1] = (h2[1] % 360 + 540) % 360 - 180, [h2[0], h2[1]];
|
|
14567
|
+
}
|
|
14568
|
+
}, Y = class extends $ {
|
|
14569
|
+
constructor(r2) {
|
|
14570
|
+
super(r2);
|
|
14571
|
+
this.faker = r2;
|
|
14572
|
+
}
|
|
14573
|
+
zipCode(r2 = {}) {
|
|
14574
|
+
typeof r2 == "string" && (r2 = { format: r2 });
|
|
14575
|
+
let { state: t2 } = r2;
|
|
14576
|
+
if (t2 != null) {
|
|
14577
|
+
let n2 = this.faker.definitions.location.postcode_by_state[t2];
|
|
14578
|
+
if (n2 == null) throw new m(`No zip code definition found for state "${t2}"`);
|
|
14579
|
+
return this.faker.helpers.fake(n2);
|
|
14580
|
+
}
|
|
14581
|
+
let { format: a2 = this.faker.definitions.location.postcode } = r2;
|
|
14582
|
+
return typeof a2 == "string" && (a2 = [a2]), a2 = this.faker.helpers.arrayElement(a2), this.faker.helpers.replaceSymbols(a2);
|
|
14583
|
+
}
|
|
14584
|
+
city() {
|
|
14585
|
+
return this.faker.helpers.fake(this.faker.definitions.location.city_pattern);
|
|
14586
|
+
}
|
|
14587
|
+
buildingNumber() {
|
|
14588
|
+
return this.faker.helpers.arrayElement(this.faker.definitions.location.building_number).replaceAll(/#+/g, (r2) => this.faker.string.numeric({ length: r2.length, allowLeadingZeros: false }));
|
|
14589
|
+
}
|
|
14590
|
+
street() {
|
|
14591
|
+
return this.faker.helpers.fake(this.faker.definitions.location.street_pattern);
|
|
14592
|
+
}
|
|
14593
|
+
streetAddress(r2 = {}) {
|
|
14594
|
+
typeof r2 == "boolean" && (r2 = { useFullAddress: r2 });
|
|
14595
|
+
let { useFullAddress: t2 } = r2, n2 = this.faker.definitions.location.street_address[t2 ? "full" : "normal"];
|
|
14596
|
+
return this.faker.helpers.fake(n2);
|
|
14597
|
+
}
|
|
14598
|
+
secondaryAddress() {
|
|
14599
|
+
return this.faker.helpers.fake(this.faker.definitions.location.secondary_address).replaceAll(/#+/g, (r2) => this.faker.string.numeric({ length: r2.length, allowLeadingZeros: false }));
|
|
14600
|
+
}
|
|
14601
|
+
county() {
|
|
14602
|
+
return this.faker.helpers.arrayElement(this.faker.definitions.location.county);
|
|
14603
|
+
}
|
|
14604
|
+
country() {
|
|
14605
|
+
return this.faker.helpers.arrayElement(this.faker.definitions.location.country);
|
|
14606
|
+
}
|
|
14607
|
+
continent() {
|
|
14608
|
+
return this.faker.helpers.arrayElement(this.faker.definitions.location.continent);
|
|
14609
|
+
}
|
|
14610
|
+
countryCode(r2 = {}) {
|
|
14611
|
+
typeof r2 == "string" && (r2 = { variant: r2 });
|
|
14612
|
+
let { variant: t2 = "alpha-2" } = r2, a2 = (() => {
|
|
14613
|
+
switch (t2) {
|
|
14614
|
+
case "numeric":
|
|
14615
|
+
return "numeric";
|
|
14616
|
+
case "alpha-3":
|
|
14617
|
+
return "alpha3";
|
|
14618
|
+
case "alpha-2":
|
|
14619
|
+
return "alpha2";
|
|
14620
|
+
}
|
|
14621
|
+
})();
|
|
14622
|
+
return this.faker.helpers.arrayElement(this.faker.definitions.location.country_code)[a2];
|
|
14623
|
+
}
|
|
14624
|
+
state(r2 = {}) {
|
|
14625
|
+
let { abbreviated: t2 = false } = r2, a2 = t2 ? this.faker.definitions.location.state_abbr : this.faker.definitions.location.state;
|
|
14626
|
+
return this.faker.helpers.arrayElement(a2);
|
|
14627
|
+
}
|
|
14628
|
+
direction(r2 = {}) {
|
|
14629
|
+
let { abbreviated: t2 = false } = r2;
|
|
14630
|
+
return t2 ? this.faker.helpers.arrayElement([...this.faker.definitions.location.direction.cardinal_abbr, ...this.faker.definitions.location.direction.ordinal_abbr]) : this.faker.helpers.arrayElement([...this.faker.definitions.location.direction.cardinal, ...this.faker.definitions.location.direction.ordinal]);
|
|
14631
|
+
}
|
|
14632
|
+
cardinalDirection(r2 = {}) {
|
|
14633
|
+
let { abbreviated: t2 = false } = r2;
|
|
14634
|
+
return t2 ? this.faker.helpers.arrayElement(this.faker.definitions.location.direction.cardinal_abbr) : this.faker.helpers.arrayElement(this.faker.definitions.location.direction.cardinal);
|
|
14635
|
+
}
|
|
14636
|
+
ordinalDirection(r2 = {}) {
|
|
14637
|
+
let { abbreviated: t2 = false } = r2;
|
|
14638
|
+
return t2 ? this.faker.helpers.arrayElement(this.faker.definitions.location.direction.ordinal_abbr) : this.faker.helpers.arrayElement(this.faker.definitions.location.direction.ordinal);
|
|
14639
|
+
}
|
|
14640
|
+
timeZone() {
|
|
14641
|
+
return this.faker.helpers.arrayElement(this.faker.definitions.location.time_zone);
|
|
14642
|
+
}
|
|
14643
|
+
language() {
|
|
14644
|
+
return this.faker.helpers.arrayElement(this.faker.definitions.location.language);
|
|
14645
|
+
}
|
|
14646
|
+
};
|
|
14647
|
+
var Z = class extends x$1 {
|
|
14533
14648
|
int(e2 = {}) {
|
|
14534
14649
|
typeof e2 == "number" && (e2 = { max: e2 });
|
|
14535
14650
|
let { min: r2 = 0, max: t2 = Number.MAX_SAFE_INTEGER, multipleOf: a2 = 1 } = e2;
|
|
@@ -14593,16 +14708,16 @@ var W = class extends x$1 {
|
|
|
14593
14708
|
return l2;
|
|
14594
14709
|
}
|
|
14595
14710
|
};
|
|
14596
|
-
var
|
|
14597
|
-
function
|
|
14711
|
+
var Me = "0123456789ABCDEFGHJKMNPQRSTVWXYZ";
|
|
14712
|
+
function ze(i) {
|
|
14598
14713
|
let e2 = i.valueOf(), r2 = "";
|
|
14599
14714
|
for (let t2 = 10; t2 > 0; t2--) {
|
|
14600
14715
|
let a2 = e2 % 32;
|
|
14601
|
-
r2 =
|
|
14716
|
+
r2 = Me[a2] + r2, e2 = (e2 - a2) / 32;
|
|
14602
14717
|
}
|
|
14603
14718
|
return r2;
|
|
14604
14719
|
}
|
|
14605
|
-
var
|
|
14720
|
+
var J = [..."ABCDEFGHIJKLMNOPQRSTUVWXYZ"], X = [..."abcdefghijklmnopqrstuvwxyz"], We = [..."0123456789"], Q = class extends x$1 {
|
|
14606
14721
|
fromCharacters(e2, r2 = 1) {
|
|
14607
14722
|
if (r2 = this.faker.helpers.rangeToNumber(r2), r2 <= 0) return "";
|
|
14608
14723
|
if (typeof e2 == "string" && (e2 = [...e2]), e2.length === 0) throw new m("Unable to generate string: No characters to select from.");
|
|
@@ -14617,15 +14732,15 @@ var Y = [..."ABCDEFGHIJKLMNOPQRSTUVWXYZ"], Z = [..."abcdefghijklmnopqrstuvwxyz"]
|
|
|
14617
14732
|
let n2;
|
|
14618
14733
|
switch (t2) {
|
|
14619
14734
|
case "upper": {
|
|
14620
|
-
n2 = [...
|
|
14735
|
+
n2 = [...J];
|
|
14621
14736
|
break;
|
|
14622
14737
|
}
|
|
14623
14738
|
case "lower": {
|
|
14624
|
-
n2 = [...
|
|
14739
|
+
n2 = [...X];
|
|
14625
14740
|
break;
|
|
14626
14741
|
}
|
|
14627
14742
|
case "mixed": {
|
|
14628
|
-
n2 = [...
|
|
14743
|
+
n2 = [...X, ...J];
|
|
14629
14744
|
break;
|
|
14630
14745
|
}
|
|
14631
14746
|
}
|
|
@@ -14637,18 +14752,18 @@ var Y = [..."ABCDEFGHIJKLMNOPQRSTUVWXYZ"], Z = [..."abcdefghijklmnopqrstuvwxyz"]
|
|
|
14637
14752
|
if (r2 <= 0) return "";
|
|
14638
14753
|
let { casing: t2 = "mixed" } = e2, { exclude: a2 = [] } = e2;
|
|
14639
14754
|
typeof a2 == "string" && (a2 = [...a2]);
|
|
14640
|
-
let n2 = [...
|
|
14755
|
+
let n2 = [...We];
|
|
14641
14756
|
switch (t2) {
|
|
14642
14757
|
case "upper": {
|
|
14643
|
-
n2.push(...
|
|
14758
|
+
n2.push(...J);
|
|
14644
14759
|
break;
|
|
14645
14760
|
}
|
|
14646
14761
|
case "lower": {
|
|
14647
|
-
n2.push(...
|
|
14762
|
+
n2.push(...X);
|
|
14648
14763
|
break;
|
|
14649
14764
|
}
|
|
14650
14765
|
case "mixed": {
|
|
14651
|
-
n2.push(...
|
|
14766
|
+
n2.push(...X, ...J);
|
|
14652
14767
|
break;
|
|
14653
14768
|
}
|
|
14654
14769
|
}
|
|
@@ -14674,7 +14789,7 @@ var Y = [..."ABCDEFGHIJKLMNOPQRSTUVWXYZ"], Z = [..."abcdefghijklmnopqrstuvwxyz"]
|
|
|
14674
14789
|
if (r2 <= 0) return "";
|
|
14675
14790
|
let { allowLeadingZeros: t2 = true } = e2, { exclude: a2 = [] } = e2;
|
|
14676
14791
|
typeof a2 == "string" && (a2 = [...a2]);
|
|
14677
|
-
let n2 =
|
|
14792
|
+
let n2 = We.filter((s2) => !a2.includes(s2));
|
|
14678
14793
|
if (n2.length === 0 || n2.length === 1 && !t2 && n2[0] === "0") throw new m("Unable to generate numeric string, because all possible digits are excluded.");
|
|
14679
14794
|
let o2 = "";
|
|
14680
14795
|
return !t2 && !a2.includes("0") && (o2 += this.faker.helpers.arrayElement(n2.filter((s2) => s2 !== "0"))), o2 += this.fromCharacters(n2, r2 - o2.length), o2;
|
|
@@ -14690,7 +14805,7 @@ var Y = [..."ABCDEFGHIJKLMNOPQRSTUVWXYZ"], Z = [..."abcdefghijklmnopqrstuvwxyz"]
|
|
|
14690
14805
|
}
|
|
14691
14806
|
ulid(e2 = {}) {
|
|
14692
14807
|
let { refDate: r2 = this.faker.defaultRefDate() } = e2, t2 = S(r2);
|
|
14693
|
-
return
|
|
14808
|
+
return ze(t2) + this.fromCharacters(Me, 16);
|
|
14694
14809
|
}
|
|
14695
14810
|
nanoid(e2 = 21) {
|
|
14696
14811
|
if (e2 = this.faker.helpers.rangeToNumber(e2), e2 <= 0) return "";
|
|
@@ -14705,17 +14820,18 @@ var Y = [..."ABCDEFGHIJKLMNOPQRSTUVWXYZ"], Z = [..."abcdefghijklmnopqrstuvwxyz"]
|
|
|
14705
14820
|
return this.fromCharacters(["!", '"', "#", "$", "%", "&", "'", "(", ")", "*", "+", ",", "-", ".", "/", ":", ";", "<", "=", ">", "?", "@", "[", "\\", "]", "^", "_", "`", "{", "|", "}", "~"], e2);
|
|
14706
14821
|
}
|
|
14707
14822
|
};
|
|
14708
|
-
var
|
|
14823
|
+
var I = class {
|
|
14709
14824
|
constructor(e2 = {}) {
|
|
14710
14825
|
__publicField(this, "_defaultRefDate", () => /* @__PURE__ */ new Date());
|
|
14711
14826
|
__publicField(this, "_randomizer");
|
|
14712
|
-
__publicField(this, "datatype", new
|
|
14827
|
+
__publicField(this, "datatype", new j(this));
|
|
14713
14828
|
__publicField(this, "date", new B(this));
|
|
14714
14829
|
__publicField(this, "helpers", new v(this));
|
|
14715
|
-
__publicField(this, "
|
|
14716
|
-
__publicField(this, "
|
|
14830
|
+
__publicField(this, "location", new $(this));
|
|
14831
|
+
__publicField(this, "number", new Z(this));
|
|
14832
|
+
__publicField(this, "string", new Q(this));
|
|
14717
14833
|
let { randomizer: r2, seed: t2 } = e2;
|
|
14718
|
-
r2 != null && t2 != null && r2.seed(t2), this._randomizer = r2 ??
|
|
14834
|
+
r2 != null && t2 != null && r2.seed(t2), this._randomizer = r2 ?? Ue(t2);
|
|
14719
14835
|
}
|
|
14720
14836
|
get defaultRefDate() {
|
|
14721
14837
|
return this._defaultRefDate;
|
|
@@ -14727,8 +14843,8 @@ var $ = class {
|
|
|
14727
14843
|
return this._randomizer.seed(e2), e2;
|
|
14728
14844
|
}
|
|
14729
14845
|
};
|
|
14730
|
-
new
|
|
14731
|
-
function
|
|
14846
|
+
new I();
|
|
14847
|
+
function Ye(i) {
|
|
14732
14848
|
let e2 = {};
|
|
14733
14849
|
for (let r2 of i) for (let t2 in r2) {
|
|
14734
14850
|
let a2 = r2[t2];
|
|
@@ -14736,7 +14852,7 @@ function We(i) {
|
|
|
14736
14852
|
}
|
|
14737
14853
|
return e2;
|
|
14738
14854
|
}
|
|
14739
|
-
var
|
|
14855
|
+
var q = class extends p {
|
|
14740
14856
|
dog() {
|
|
14741
14857
|
return this.faker.helpers.arrayElement(this.faker.definitions.animal.dog);
|
|
14742
14858
|
}
|
|
@@ -14786,7 +14902,7 @@ var X = class extends p {
|
|
|
14786
14902
|
return this.faker.helpers.arrayElement(this.faker.definitions.animal.pet_name);
|
|
14787
14903
|
}
|
|
14788
14904
|
};
|
|
14789
|
-
var
|
|
14905
|
+
var ee = class extends p {
|
|
14790
14906
|
author() {
|
|
14791
14907
|
return this.faker.helpers.arrayElement(this.faker.definitions.book.author);
|
|
14792
14908
|
}
|
|
@@ -14806,7 +14922,7 @@ var Q = class extends p {
|
|
|
14806
14922
|
return this.faker.helpers.arrayElement(this.faker.definitions.book.title);
|
|
14807
14923
|
}
|
|
14808
14924
|
};
|
|
14809
|
-
var
|
|
14925
|
+
var Vr = { 0: [[1999999, 2], [2279999, 3], [2289999, 4], [3689999, 3], [3699999, 4], [6389999, 3], [6397999, 4], [6399999, 7], [6449999, 3], [6459999, 7], [6479999, 3], [6489999, 7], [6549999, 3], [6559999, 4], [6999999, 3], [8499999, 4], [8999999, 5], [9499999, 6], [9999999, 7]], 1: [[99999, 3], [299999, 2], [349999, 3], [399999, 4], [499999, 3], [699999, 2], [999999, 4], [3979999, 3], [5499999, 4], [6499999, 5], [6799999, 4], [6859999, 5], [7139999, 4], [7169999, 3], [7319999, 4], [7399999, 7], [7749999, 5], [7753999, 7], [7763999, 5], [7764999, 7], [7769999, 5], [7782999, 7], [7899999, 5], [7999999, 4], [8004999, 5], [8049999, 5], [8379999, 5], [8384999, 7], [8671999, 5], [8675999, 4], [8697999, 5], [9159999, 6], [9165059, 7], [9168699, 6], [9169079, 7], [9195999, 6], [9196549, 7], [9729999, 6], [9877999, 4], [9911499, 6], [9911999, 7], [9989899, 6], [9999999, 7]] }, re$1 = class re extends p {
|
|
14810
14926
|
department() {
|
|
14811
14927
|
return this.faker.helpers.arrayElement(this.faker.definitions.commerce.department);
|
|
14812
14928
|
}
|
|
@@ -14837,7 +14953,7 @@ var Hr = { 0: [[1999999, 2], [2279999, 3], [2289999, 4], [3689999, 3], [3699999,
|
|
|
14837
14953
|
isbn(e2 = {}) {
|
|
14838
14954
|
var _a2;
|
|
14839
14955
|
typeof e2 == "number" && (e2 = { variant: e2 });
|
|
14840
|
-
let { variant: r2 = 13, separator: t2 = "-" } = e2, a2 = "978", [n2, o2] = this.faker.helpers.objectEntry(
|
|
14956
|
+
let { variant: r2 = 13, separator: t2 = "-" } = e2, a2 = "978", [n2, o2] = this.faker.helpers.objectEntry(Vr), s2 = this.faker.string.numeric(8), l2 = Number.parseInt(s2.slice(0, -1)), c2 = (_a2 = o2.find(([y2]) => l2 <= y2)) == null ? void 0 : _a2[1];
|
|
14841
14957
|
if (!c2) throw new m(`Unable to find a registrant length for the group ${n2}`);
|
|
14842
14958
|
let u2 = s2.slice(0, c2), h2 = s2.slice(c2), f2 = [a2, n2, u2, h2];
|
|
14843
14959
|
r2 === 10 && f2.shift();
|
|
@@ -14849,7 +14965,7 @@ var Hr = { 0: [[1999999, 2], [2279999, 3], [2289999, 4], [3689999, 3], [3699999,
|
|
|
14849
14965
|
return b2 = r2 === 10 ? b2 % 11 : (10 - b2 % 10) % 10, f2.push(b2 === 10 ? "X" : b2.toString()), f2.join(t2);
|
|
14850
14966
|
}
|
|
14851
14967
|
};
|
|
14852
|
-
var
|
|
14968
|
+
var te$1 = class te extends p {
|
|
14853
14969
|
name() {
|
|
14854
14970
|
return this.faker.helpers.fake(this.faker.definitions.company.name_pattern);
|
|
14855
14971
|
}
|
|
@@ -14878,7 +14994,7 @@ var ee = class extends p {
|
|
|
14878
14994
|
return this.faker.helpers.arrayElement(this.faker.definitions.company.buzz_noun);
|
|
14879
14995
|
}
|
|
14880
14996
|
};
|
|
14881
|
-
var
|
|
14997
|
+
var ae = class extends p {
|
|
14882
14998
|
column() {
|
|
14883
14999
|
return this.faker.helpers.arrayElement(this.faker.definitions.database.column);
|
|
14884
15000
|
}
|
|
@@ -14895,17 +15011,17 @@ var re$1 = class re extends p {
|
|
|
14895
15011
|
return this.faker.string.hexadecimal({ length: 24, casing: "lower", prefix: "" });
|
|
14896
15012
|
}
|
|
14897
15013
|
};
|
|
14898
|
-
var Vr = { alpha: ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"], formats: [{ country: "AL", total: 28, bban: [{ type: "n", count: 8 }, { type: "c", count: 16 }], format: "ALkk bbbs sssx cccc cccc cccc cccc" }, { country: "AD", total: 24, bban: [{ type: "n", count: 8 }, { type: "c", count: 12 }], format: "ADkk bbbb ssss cccc cccc cccc" }, { country: "AT", total: 20, bban: [{ type: "n", count: 5 }, { type: "n", count: 11 }], format: "ATkk bbbb bccc cccc cccc" }, { country: "AZ", total: 28, bban: [{ type: "a", count: 4 }, { type: "n", count: 20 }], format: "AZkk bbbb cccc cccc cccc cccc cccc" }, { country: "BH", total: 22, bban: [{ type: "a", count: 4 }, { type: "c", count: 14 }], format: "BHkk bbbb cccc cccc cccc cc" }, { country: "BE", total: 16, bban: [{ type: "n", count: 3 }, { type: "n", count: 9 }], format: "BEkk bbbc cccc ccxx" }, { country: "BA", total: 20, bban: [{ type: "n", count: 6 }, { type: "n", count: 10 }], format: "BAkk bbbs sscc cccc ccxx" }, { country: "BR", total: 29, bban: [{ type: "n", count: 13 }, { type: "n", count: 10 }, { type: "a", count: 1 }, { type: "c", count: 1 }], format: "BRkk bbbb bbbb ssss sccc cccc ccct n" }, { country: "BG", total: 22, bban: [{ type: "a", count: 4 }, { type: "n", count: 6 }, { type: "c", count: 8 }], format: "BGkk bbbb ssss ddcc cccc cc" }, { country: "CR", total: 22, bban: [{ type: "n", count: 1 }, { type: "n", count: 3 }, { type: "n", count: 14 }], format: "CRkk xbbb cccc cccc cccc cc" }, { country: "HR", total: 21, bban: [{ type: "n", count: 7 }, { type: "n", count: 10 }], format: "HRkk bbbb bbbc cccc cccc c" }, { country: "CY", total: 28, bban: [{ type: "n", count: 8 }, { type: "c", count: 16 }], format: "CYkk bbbs ssss cccc cccc cccc cccc" }, { country: "CZ", total: 24, bban: [{ type: "n", count: 10 }, { type: "n", count: 10 }], format: "CZkk bbbb ssss sscc cccc cccc" }, { country: "DK", total: 18, bban: [{ type: "n", count: 4 }, { type: "n", count: 10 }], format: "DKkk bbbb cccc cccc cc" }, { country: "DO", total: 28, bban: [{ type: "a", count: 4 }, { type: "n", count: 20 }], format: "DOkk bbbb cccc cccc cccc cccc cccc" }, { country: "TL", total: 23, bban: [{ type: "n", count: 3 }, { type: "n", count: 16 }], format: "TLkk bbbc cccc cccc cccc cxx" }, { country: "EE", total: 20, bban: [{ type: "n", count: 4 }, { type: "n", count: 12 }], format: "EEkk bbss cccc cccc cccx" }, { country: "FO", total: 18, bban: [{ type: "n", count: 4 }, { type: "n", count: 10 }], format: "FOkk bbbb cccc cccc cx" }, { country: "FI", total: 18, bban: [{ type: "n", count: 6 }, { type: "n", count: 8 }], format: "FIkk bbbb bbcc cccc cx" }, { country: "FR", total: 27, bban: [{ type: "n", count: 10 }, { type: "c", count: 11 }, { type: "n", count: 2 }], format: "FRkk bbbb bggg ggcc cccc cccc cxx" }, { country: "GE", total: 22, bban: [{ type: "a", count: 2 }, { type: "n", count: 16 }], format: "GEkk bbcc cccc cccc cccc cc" }, { country: "DE", total: 22, bban: [{ type: "n", count: 8 }, { type: "n", count: 10 }], format: "DEkk bbbb bbbb cccc cccc cc" }, { country: "GI", total: 23, bban: [{ type: "a", count: 4 }, { type: "c", count: 15 }], format: "GIkk bbbb cccc cccc cccc ccc" }, { country: "GR", total: 27, bban: [{ type: "n", count: 7 }, { type: "c", count: 16 }], format: "GRkk bbbs sssc cccc cccc cccc ccc" }, { country: "GL", total: 18, bban: [{ type: "n", count: 4 }, { type: "n", count: 10 }], format: "GLkk bbbb cccc cccc cc" }, { country: "GT", total: 28, bban: [{ type: "c", count: 4 }, { type: "c", count: 4 }, { type: "c", count: 16 }], format: "GTkk bbbb mmtt cccc cccc cccc cccc" }, { country: "HU", total: 28, bban: [{ type: "n", count: 8 }, { type: "n", count: 16 }], format: "HUkk bbbs sssk cccc cccc cccc cccx" }, { country: "IS", total: 26, bban: [{ type: "n", count: 6 }, { type: "n", count: 16 }], format: "ISkk bbbb sscc cccc iiii iiii ii" }, { country: "IE", total: 22, bban: [{ type: "a", count: 4 }, { type: "n", count: 6 }, { type: "n", count: 8 }], format: "IEkk aaaa bbbb bbcc cccc cc" }, { country: "IL", total: 23, bban: [{ type: "n", count: 6 }, { type: "n", count: 13 }], format: "ILkk bbbn nncc cccc cccc ccc" }, { country: "IT", total: 27, bban: [{ type: "a", count: 1 }, { type: "n", count: 10 }, { type: "c", count: 12 }], format: "ITkk xaaa aabb bbbc cccc cccc ccc" }, { country: "JO", total: 30, bban: [{ type: "a", count: 4 }, { type: "n", count: 4 }, { type: "n", count: 18 }], format: "JOkk bbbb nnnn cccc cccc cccc cccc cc" }, { country: "KZ", total: 20, bban: [{ type: "n", count: 3 }, { type: "c", count: 13 }], format: "KZkk bbbc cccc cccc cccc" }, { country: "XK", total: 20, bban: [{ type: "n", count: 4 }, { type: "n", count: 12 }], format: "XKkk bbbb cccc cccc cccc" }, { country: "KW", total: 30, bban: [{ type: "a", count: 4 }, { type: "c", count: 22 }], format: "KWkk bbbb cccc cccc cccc cccc cccc cc" }, { country: "LV", total: 21, bban: [{ type: "a", count: 4 }, { type: "c", count: 13 }], format: "LVkk bbbb cccc cccc cccc c" }, { country: "LB", total: 28, bban: [{ type: "n", count: 4 }, { type: "c", count: 20 }], format: "LBkk bbbb cccc cccc cccc cccc cccc" }, { country: "LI", total: 21, bban: [{ type: "n", count: 5 }, { type: "c", count: 12 }], format: "LIkk bbbb bccc cccc cccc c" }, { country: "LT", total: 20, bban: [{ type: "n", count: 5 }, { type: "n", count: 11 }], format: "LTkk bbbb bccc cccc cccc" }, { country: "LU", total: 20, bban: [{ type: "n", count: 3 }, { type: "c", count: 13 }], format: "LUkk bbbc cccc cccc cccc" }, { country: "MK", total: 19, bban: [{ type: "n", count: 3 }, { type: "c", count: 10 }, { type: "n", count: 2 }], format: "MKkk bbbc cccc cccc cxx" }, { country: "MT", total: 31, bban: [{ type: "a", count: 4 }, { type: "n", count: 5 }, { type: "c", count: 18 }], format: "MTkk bbbb ssss sccc cccc cccc cccc ccc" }, { country: "MR", total: 27, bban: [{ type: "n", count: 10 }, { type: "n", count: 13 }], format: "MRkk bbbb bsss sscc cccc cccc cxx" }, { country: "MU", total: 30, bban: [{ type: "a", count: 4 }, { type: "n", count: 4 }, { type: "n", count: 15 }, { type: "a", count: 3 }], format: "MUkk bbbb bbss cccc cccc cccc 000d dd" }, { country: "MC", total: 27, bban: [{ type: "n", count: 10 }, { type: "c", count: 11 }, { type: "n", count: 2 }], format: "MCkk bbbb bsss sscc cccc cccc cxx" }, { country: "MD", total: 24, bban: [{ type: "c", count: 2 }, { type: "c", count: 18 }], format: "MDkk bbcc cccc cccc cccc cccc" }, { country: "ME", total: 22, bban: [{ type: "n", count: 3 }, { type: "n", count: 15 }], format: "MEkk bbbc cccc cccc cccc xx" }, { country: "NL", total: 18, bban: [{ type: "a", count: 4 }, { type: "n", count: 10 }], format: "NLkk bbbb cccc cccc cc" }, { country: "NO", total: 15, bban: [{ type: "n", count: 4 }, { type: "n", count: 7 }], format: "NOkk bbbb cccc ccx" }, { country: "PK", total: 24, bban: [{ type: "a", count: 4 }, { type: "n", count: 16 }], format: "PKkk bbbb cccc cccc cccc cccc" }, { country: "PS", total: 29, bban: [{ type: "a", count: 4 }, { type: "n", count: 9 }, { type: "n", count: 12 }], format: "PSkk bbbb xxxx xxxx xccc cccc cccc c" }, { country: "PL", total: 28, bban: [{ type: "n", count: 8 }, { type: "n", count: 16 }], format: "PLkk bbbs sssx cccc cccc cccc cccc" }, { country: "PT", total: 25, bban: [{ type: "n", count: 8 }, { type: "n", count: 13 }], format: "PTkk bbbb ssss cccc cccc cccx x" }, { country: "QA", total: 29, bban: [{ type: "a", count: 4 }, { type: "c", count: 21 }], format: "QAkk bbbb cccc cccc cccc cccc cccc c" }, { country: "RO", total: 24, bban: [{ type: "a", count: 4 }, { type: "c", count: 16 }], format: "ROkk bbbb cccc cccc cccc cccc" }, { country: "SM", total: 27, bban: [{ type: "a", count: 1 }, { type: "n", count: 10 }, { type: "c", count: 12 }], format: "SMkk xaaa aabb bbbc cccc cccc ccc" }, { country: "SA", total: 24, bban: [{ type: "n", count: 2 }, { type: "c", count: 18 }], format: "SAkk bbcc cccc cccc cccc cccc" }, { country: "RS", total: 22, bban: [{ type: "n", count: 3 }, { type: "n", count: 15 }], format: "RSkk bbbc cccc cccc cccc xx" }, { country: "SK", total: 24, bban: [{ type: "n", count: 10 }, { type: "n", count: 10 }], format: "SKkk bbbb ssss sscc cccc cccc" }, { country: "SI", total: 19, bban: [{ type: "n", count: 5 }, { type: "n", count: 10 }], format: "SIkk bbss sccc cccc cxx" }, { country: "ES", total: 24, bban: [{ type: "n", count: 10 }, { type: "n", count: 10 }], format: "ESkk bbbb gggg xxcc cccc cccc" }, { country: "SE", total: 24, bban: [{ type: "n", count: 3 }, { type: "n", count: 17 }], format: "SEkk bbbc cccc cccc cccc cccc" }, { country: "CH", total: 21, bban: [{ type: "n", count: 5 }, { type: "c", count: 12 }], format: "CHkk bbbb bccc cccc cccc c" }, { country: "TN", total: 24, bban: [{ type: "n", count: 5 }, { type: "n", count: 15 }], format: "TNkk bbss sccc cccc cccc cccc" }, { country: "TR", total: 26, bban: [{ type: "n", count: 5 }, { type: "n", count: 1 }, { type: "n", count: 16 }], format: "TRkk bbbb bxcc cccc cccc cccc cc" }, { country: "AE", total: 23, bban: [{ type: "n", count: 3 }, { type: "n", count: 16 }], format: "AEkk bbbc cccc cccc cccc ccc" }, { country: "GB", total: 22, bban: [{ type: "a", count: 4 }, { type: "n", count: 6 }, { type: "n", count: 8 }], format: "GBkk bbbb ssss sscc cccc cc" }, { country: "VG", total: 24, bban: [{ type: "a", count: 4 }, { type: "n", count: 16 }], format: "VGkk bbbb cccc cccc cccc cccc" }], iso3166: ["AD", "AE", "AF", "AG", "AI", "AL", "AM", "AO", "AQ", "AR", "AS", "AT", "AU", "AW", "AX", "AZ", "BA", "BB", "BD", "BE", "BF", "BG", "BH", "BI", "BJ", "BL", "BM", "BN", "BO", "BQ", "BR", "BS", "BT", "BV", "BW", "BY", "BZ", "CA", "CC", "CD", "CF", "CG", "CH", "CI", "CK", "CL", "CM", "CN", "CO", "CR", "CU", "CV", "CW", "CX", "CY", "CZ", "DE", "DJ", "DK", "DM", "DO", "DZ", "EC", "EE", "EG", "EH", "ER", "ES", "ET", "FI", "FJ", "FK", "FM", "FO", "FR", "GA", "GB", "GD", "GE", "GF", "GG", "GH", "GI", "GL", "GM", "GN", "GP", "GQ", "GR", "GS", "GT", "GU", "GW", "GY", "HK", "HM", "HN", "HR", "HT", "HU", "ID", "IE", "IL", "IM", "IN", "IO", "IQ", "IR", "IS", "IT", "JE", "JM", "JO", "JP", "KE", "KG", "KH", "KI", "KM", "KN", "KP", "KR", "KW", "KY", "KZ", "LA", "LB", "LC", "LI", "LK", "LR", "LS", "LT", "LU", "LV", "LY", "MA", "MC", "MD", "ME", "MF", "MG", "MH", "MK", "ML", "MM", "MN", "MO", "MP", "MQ", "MR", "MS", "MT", "MU", "MV", "MW", "MX", "MY", "MZ", "NA", "NC", "NE", "NF", "NG", "NI", "NL", "NO", "NP", "NR", "NU", "NZ", "OM", "PA", "PE", "PF", "PG", "PH", "PK", "PL", "PM", "PN", "PR", "PS", "PT", "PW", "PY", "QA", "RE", "RO", "RS", "RU", "RW", "SA", "SB", "SC", "SD", "SE", "SG", "SH", "SI", "SJ", "SK", "SL", "SM", "SN", "SO", "SR", "SS", "ST", "SV", "SX", "SY", "SZ", "TC", "TD", "TF", "TG", "TH", "TJ", "TK", "TL", "TM", "TN", "TO", "TR", "TT", "TV", "TW", "TZ", "UA", "UG", "UM", "US", "UY", "UZ", "VA", "VC", "VE", "VG", "VI", "VN", "VU", "WF", "WS", "XK", "YE", "YT", "ZA", "ZM", "ZW"], mod97: (i) => {
|
|
15014
|
+
var zr = { alpha: ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"], formats: [{ country: "AL", total: 28, bban: [{ type: "n", count: 8 }, { type: "c", count: 16 }], format: "ALkk bbbs sssx cccc cccc cccc cccc" }, { country: "AD", total: 24, bban: [{ type: "n", count: 8 }, { type: "c", count: 12 }], format: "ADkk bbbb ssss cccc cccc cccc" }, { country: "AT", total: 20, bban: [{ type: "n", count: 5 }, { type: "n", count: 11 }], format: "ATkk bbbb bccc cccc cccc" }, { country: "AZ", total: 28, bban: [{ type: "a", count: 4 }, { type: "n", count: 20 }], format: "AZkk bbbb cccc cccc cccc cccc cccc" }, { country: "BH", total: 22, bban: [{ type: "a", count: 4 }, { type: "c", count: 14 }], format: "BHkk bbbb cccc cccc cccc cc" }, { country: "BE", total: 16, bban: [{ type: "n", count: 3 }, { type: "n", count: 9 }], format: "BEkk bbbc cccc ccxx" }, { country: "BA", total: 20, bban: [{ type: "n", count: 6 }, { type: "n", count: 10 }], format: "BAkk bbbs sscc cccc ccxx" }, { country: "BR", total: 29, bban: [{ type: "n", count: 13 }, { type: "n", count: 10 }, { type: "a", count: 1 }, { type: "c", count: 1 }], format: "BRkk bbbb bbbb ssss sccc cccc ccct n" }, { country: "BG", total: 22, bban: [{ type: "a", count: 4 }, { type: "n", count: 6 }, { type: "c", count: 8 }], format: "BGkk bbbb ssss ddcc cccc cc" }, { country: "CR", total: 22, bban: [{ type: "n", count: 1 }, { type: "n", count: 3 }, { type: "n", count: 14 }], format: "CRkk xbbb cccc cccc cccc cc" }, { country: "HR", total: 21, bban: [{ type: "n", count: 7 }, { type: "n", count: 10 }], format: "HRkk bbbb bbbc cccc cccc c" }, { country: "CY", total: 28, bban: [{ type: "n", count: 8 }, { type: "c", count: 16 }], format: "CYkk bbbs ssss cccc cccc cccc cccc" }, { country: "CZ", total: 24, bban: [{ type: "n", count: 10 }, { type: "n", count: 10 }], format: "CZkk bbbb ssss sscc cccc cccc" }, { country: "DK", total: 18, bban: [{ type: "n", count: 4 }, { type: "n", count: 10 }], format: "DKkk bbbb cccc cccc cc" }, { country: "DO", total: 28, bban: [{ type: "a", count: 4 }, { type: "n", count: 20 }], format: "DOkk bbbb cccc cccc cccc cccc cccc" }, { country: "TL", total: 23, bban: [{ type: "n", count: 3 }, { type: "n", count: 16 }], format: "TLkk bbbc cccc cccc cccc cxx" }, { country: "EE", total: 20, bban: [{ type: "n", count: 4 }, { type: "n", count: 12 }], format: "EEkk bbss cccc cccc cccx" }, { country: "FO", total: 18, bban: [{ type: "n", count: 4 }, { type: "n", count: 10 }], format: "FOkk bbbb cccc cccc cx" }, { country: "FI", total: 18, bban: [{ type: "n", count: 6 }, { type: "n", count: 8 }], format: "FIkk bbbb bbcc cccc cx" }, { country: "FR", total: 27, bban: [{ type: "n", count: 10 }, { type: "c", count: 11 }, { type: "n", count: 2 }], format: "FRkk bbbb bggg ggcc cccc cccc cxx" }, { country: "GE", total: 22, bban: [{ type: "a", count: 2 }, { type: "n", count: 16 }], format: "GEkk bbcc cccc cccc cccc cc" }, { country: "DE", total: 22, bban: [{ type: "n", count: 8 }, { type: "n", count: 10 }], format: "DEkk bbbb bbbb cccc cccc cc" }, { country: "GI", total: 23, bban: [{ type: "a", count: 4 }, { type: "c", count: 15 }], format: "GIkk bbbb cccc cccc cccc ccc" }, { country: "GR", total: 27, bban: [{ type: "n", count: 7 }, { type: "c", count: 16 }], format: "GRkk bbbs sssc cccc cccc cccc ccc" }, { country: "GL", total: 18, bban: [{ type: "n", count: 4 }, { type: "n", count: 10 }], format: "GLkk bbbb cccc cccc cc" }, { country: "GT", total: 28, bban: [{ type: "c", count: 4 }, { type: "c", count: 4 }, { type: "c", count: 16 }], format: "GTkk bbbb mmtt cccc cccc cccc cccc" }, { country: "HU", total: 28, bban: [{ type: "n", count: 8 }, { type: "n", count: 16 }], format: "HUkk bbbs sssk cccc cccc cccc cccx" }, { country: "IS", total: 26, bban: [{ type: "n", count: 6 }, { type: "n", count: 16 }], format: "ISkk bbbb sscc cccc iiii iiii ii" }, { country: "IE", total: 22, bban: [{ type: "a", count: 4 }, { type: "n", count: 6 }, { type: "n", count: 8 }], format: "IEkk aaaa bbbb bbcc cccc cc" }, { country: "IL", total: 23, bban: [{ type: "n", count: 6 }, { type: "n", count: 13 }], format: "ILkk bbbn nncc cccc cccc ccc" }, { country: "IT", total: 27, bban: [{ type: "a", count: 1 }, { type: "n", count: 10 }, { type: "c", count: 12 }], format: "ITkk xaaa aabb bbbc cccc cccc ccc" }, { country: "JO", total: 30, bban: [{ type: "a", count: 4 }, { type: "n", count: 4 }, { type: "n", count: 18 }], format: "JOkk bbbb nnnn cccc cccc cccc cccc cc" }, { country: "KZ", total: 20, bban: [{ type: "n", count: 3 }, { type: "c", count: 13 }], format: "KZkk bbbc cccc cccc cccc" }, { country: "XK", total: 20, bban: [{ type: "n", count: 4 }, { type: "n", count: 12 }], format: "XKkk bbbb cccc cccc cccc" }, { country: "KW", total: 30, bban: [{ type: "a", count: 4 }, { type: "c", count: 22 }], format: "KWkk bbbb cccc cccc cccc cccc cccc cc" }, { country: "LV", total: 21, bban: [{ type: "a", count: 4 }, { type: "c", count: 13 }], format: "LVkk bbbb cccc cccc cccc c" }, { country: "LB", total: 28, bban: [{ type: "n", count: 4 }, { type: "c", count: 20 }], format: "LBkk bbbb cccc cccc cccc cccc cccc" }, { country: "LI", total: 21, bban: [{ type: "n", count: 5 }, { type: "c", count: 12 }], format: "LIkk bbbb bccc cccc cccc c" }, { country: "LT", total: 20, bban: [{ type: "n", count: 5 }, { type: "n", count: 11 }], format: "LTkk bbbb bccc cccc cccc" }, { country: "LU", total: 20, bban: [{ type: "n", count: 3 }, { type: "c", count: 13 }], format: "LUkk bbbc cccc cccc cccc" }, { country: "MK", total: 19, bban: [{ type: "n", count: 3 }, { type: "c", count: 10 }, { type: "n", count: 2 }], format: "MKkk bbbc cccc cccc cxx" }, { country: "MT", total: 31, bban: [{ type: "a", count: 4 }, { type: "n", count: 5 }, { type: "c", count: 18 }], format: "MTkk bbbb ssss sccc cccc cccc cccc ccc" }, { country: "MR", total: 27, bban: [{ type: "n", count: 10 }, { type: "n", count: 13 }], format: "MRkk bbbb bsss sscc cccc cccc cxx" }, { country: "MU", total: 30, bban: [{ type: "a", count: 4 }, { type: "n", count: 4 }, { type: "n", count: 15 }, { type: "a", count: 3 }], format: "MUkk bbbb bbss cccc cccc cccc 000d dd" }, { country: "MC", total: 27, bban: [{ type: "n", count: 10 }, { type: "c", count: 11 }, { type: "n", count: 2 }], format: "MCkk bbbb bsss sscc cccc cccc cxx" }, { country: "MD", total: 24, bban: [{ type: "c", count: 2 }, { type: "c", count: 18 }], format: "MDkk bbcc cccc cccc cccc cccc" }, { country: "ME", total: 22, bban: [{ type: "n", count: 3 }, { type: "n", count: 15 }], format: "MEkk bbbc cccc cccc cccc xx" }, { country: "NL", total: 18, bban: [{ type: "a", count: 4 }, { type: "n", count: 10 }], format: "NLkk bbbb cccc cccc cc" }, { country: "NO", total: 15, bban: [{ type: "n", count: 4 }, { type: "n", count: 7 }], format: "NOkk bbbb cccc ccx" }, { country: "PK", total: 24, bban: [{ type: "a", count: 4 }, { type: "n", count: 16 }], format: "PKkk bbbb cccc cccc cccc cccc" }, { country: "PS", total: 29, bban: [{ type: "a", count: 4 }, { type: "n", count: 9 }, { type: "n", count: 12 }], format: "PSkk bbbb xxxx xxxx xccc cccc cccc c" }, { country: "PL", total: 28, bban: [{ type: "n", count: 8 }, { type: "n", count: 16 }], format: "PLkk bbbs sssx cccc cccc cccc cccc" }, { country: "PT", total: 25, bban: [{ type: "n", count: 8 }, { type: "n", count: 13 }], format: "PTkk bbbb ssss cccc cccc cccx x" }, { country: "QA", total: 29, bban: [{ type: "a", count: 4 }, { type: "c", count: 21 }], format: "QAkk bbbb cccc cccc cccc cccc cccc c" }, { country: "RO", total: 24, bban: [{ type: "a", count: 4 }, { type: "c", count: 16 }], format: "ROkk bbbb cccc cccc cccc cccc" }, { country: "SM", total: 27, bban: [{ type: "a", count: 1 }, { type: "n", count: 10 }, { type: "c", count: 12 }], format: "SMkk xaaa aabb bbbc cccc cccc ccc" }, { country: "SA", total: 24, bban: [{ type: "n", count: 2 }, { type: "c", count: 18 }], format: "SAkk bbcc cccc cccc cccc cccc" }, { country: "RS", total: 22, bban: [{ type: "n", count: 3 }, { type: "n", count: 15 }], format: "RSkk bbbc cccc cccc cccc xx" }, { country: "SK", total: 24, bban: [{ type: "n", count: 10 }, { type: "n", count: 10 }], format: "SKkk bbbb ssss sscc cccc cccc" }, { country: "SI", total: 19, bban: [{ type: "n", count: 5 }, { type: "n", count: 10 }], format: "SIkk bbss sccc cccc cxx" }, { country: "ES", total: 24, bban: [{ type: "n", count: 10 }, { type: "n", count: 10 }], format: "ESkk bbbb gggg xxcc cccc cccc" }, { country: "SE", total: 24, bban: [{ type: "n", count: 3 }, { type: "n", count: 17 }], format: "SEkk bbbc cccc cccc cccc cccc" }, { country: "CH", total: 21, bban: [{ type: "n", count: 5 }, { type: "c", count: 12 }], format: "CHkk bbbb bccc cccc cccc c" }, { country: "TN", total: 24, bban: [{ type: "n", count: 5 }, { type: "n", count: 15 }], format: "TNkk bbss sccc cccc cccc cccc" }, { country: "TR", total: 26, bban: [{ type: "n", count: 5 }, { type: "n", count: 1 }, { type: "n", count: 16 }], format: "TRkk bbbb bxcc cccc cccc cccc cc" }, { country: "AE", total: 23, bban: [{ type: "n", count: 3 }, { type: "n", count: 16 }], format: "AEkk bbbc cccc cccc cccc ccc" }, { country: "GB", total: 22, bban: [{ type: "a", count: 4 }, { type: "n", count: 6 }, { type: "n", count: 8 }], format: "GBkk bbbb ssss sscc cccc cc" }, { country: "VG", total: 24, bban: [{ type: "a", count: 4 }, { type: "n", count: 16 }], format: "VGkk bbbb cccc cccc cccc cccc" }], iso3166: ["AD", "AE", "AF", "AG", "AI", "AL", "AM", "AO", "AQ", "AR", "AS", "AT", "AU", "AW", "AX", "AZ", "BA", "BB", "BD", "BE", "BF", "BG", "BH", "BI", "BJ", "BL", "BM", "BN", "BO", "BQ", "BR", "BS", "BT", "BV", "BW", "BY", "BZ", "CA", "CC", "CD", "CF", "CG", "CH", "CI", "CK", "CL", "CM", "CN", "CO", "CR", "CU", "CV", "CW", "CX", "CY", "CZ", "DE", "DJ", "DK", "DM", "DO", "DZ", "EC", "EE", "EG", "EH", "ER", "ES", "ET", "FI", "FJ", "FK", "FM", "FO", "FR", "GA", "GB", "GD", "GE", "GF", "GG", "GH", "GI", "GL", "GM", "GN", "GP", "GQ", "GR", "GS", "GT", "GU", "GW", "GY", "HK", "HM", "HN", "HR", "HT", "HU", "ID", "IE", "IL", "IM", "IN", "IO", "IQ", "IR", "IS", "IT", "JE", "JM", "JO", "JP", "KE", "KG", "KH", "KI", "KM", "KN", "KP", "KR", "KW", "KY", "KZ", "LA", "LB", "LC", "LI", "LK", "LR", "LS", "LT", "LU", "LV", "LY", "MA", "MC", "MD", "ME", "MF", "MG", "MH", "MK", "ML", "MM", "MN", "MO", "MP", "MQ", "MR", "MS", "MT", "MU", "MV", "MW", "MX", "MY", "MZ", "NA", "NC", "NE", "NF", "NG", "NI", "NL", "NO", "NP", "NR", "NU", "NZ", "OM", "PA", "PE", "PF", "PG", "PH", "PK", "PL", "PM", "PN", "PR", "PS", "PT", "PW", "PY", "QA", "RE", "RO", "RS", "RU", "RW", "SA", "SB", "SC", "SD", "SE", "SG", "SH", "SI", "SJ", "SK", "SL", "SM", "SN", "SO", "SR", "SS", "ST", "SV", "SX", "SY", "SZ", "TC", "TD", "TF", "TG", "TH", "TJ", "TK", "TL", "TM", "TN", "TO", "TR", "TT", "TV", "TW", "TZ", "UA", "UG", "UM", "US", "UY", "UZ", "VA", "VC", "VE", "VG", "VI", "VN", "VU", "WF", "WS", "XK", "YE", "YT", "ZA", "ZM", "ZW"], mod97: (i) => {
|
|
14899
15015
|
let e2 = 0;
|
|
14900
15016
|
for (let r2 of i) e2 = (e2 * 10 + +r2) % 97;
|
|
14901
15017
|
return e2;
|
|
14902
|
-
}, pattern10: ["01", "02", "03", "04", "05", "06", "07", "08", "09"], pattern100: ["001", "002", "003", "004", "005", "006", "007", "008", "009"], toDigitString: (i) => i.replaceAll(/[A-Z]/gi, (e2) => String((e2.toUpperCase().codePointAt(0) ?? Number.NaN) - 55)) }, M =
|
|
14903
|
-
function
|
|
15018
|
+
}, pattern10: ["01", "02", "03", "04", "05", "06", "07", "08", "09"], pattern100: ["001", "002", "003", "004", "005", "006", "007", "008", "009"], toDigitString: (i) => i.replaceAll(/[A-Z]/gi, (e2) => String((e2.toUpperCase().codePointAt(0) ?? Number.NaN) - 55)) }, M = zr;
|
|
15019
|
+
function Wr(i) {
|
|
14904
15020
|
let e2 = "";
|
|
14905
15021
|
for (let r2 = 0; r2 < i.length; r2 += 4) e2 += `${i.substring(r2, r2 + 4)} `;
|
|
14906
15022
|
return e2.trimEnd();
|
|
14907
15023
|
}
|
|
14908
|
-
var
|
|
15024
|
+
var ne = class extends p {
|
|
14909
15025
|
accountNumber(e2 = {}) {
|
|
14910
15026
|
typeof e2 == "number" && (e2 = { length: e2 });
|
|
14911
15027
|
let { length: r2 = 8 } = e2;
|
|
@@ -14951,7 +15067,7 @@ var te$1 = class te extends p {
|
|
|
14951
15067
|
return this.currency().numericCode;
|
|
14952
15068
|
}
|
|
14953
15069
|
bitcoinAddress(e2 = {}) {
|
|
14954
|
-
let { type: r2 = this.faker.helpers.enumValue(
|
|
15070
|
+
let { type: r2 = this.faker.helpers.enumValue(de), network: t2 = "mainnet" } = e2, a2 = ve[r2], n2 = a2.prefix[t2], o2 = this.faker.number.int(a2.length), s2 = this.faker.string.alphanumeric({ length: o2 - n2.length, casing: a2.casing, exclude: a2.exclude });
|
|
14955
15071
|
return n2 + s2;
|
|
14956
15072
|
}
|
|
14957
15073
|
litecoinAddress() {
|
|
@@ -14996,7 +15112,7 @@ var te$1 = class te extends p {
|
|
|
14996
15112
|
let s2 = 98 - M.mod97(M.toDigitString(`${n2}${a2.country}00`));
|
|
14997
15113
|
s2 < 10 && (s2 = `0${s2}`);
|
|
14998
15114
|
let l2 = `${a2.country}${s2}${n2}`;
|
|
14999
|
-
return t2 ?
|
|
15115
|
+
return t2 ? Wr(l2) : l2;
|
|
15000
15116
|
}
|
|
15001
15117
|
bic(e2 = {}) {
|
|
15002
15118
|
let { includeBranchCode: r2 = this.faker.datatype.boolean() } = e2, t2 = this.faker.string.alpha({ length: 4, casing: "upper" }), a2 = this.faker.helpers.arrayElement(M.iso3166), n2 = this.faker.string.alphanumeric({ length: 2, casing: "upper" }), o2 = r2 ? this.faker.datatype.boolean() ? this.faker.string.alphanumeric({ length: 3, casing: "upper" }) : "XXX" : "";
|
|
@@ -15006,10 +15122,10 @@ var te$1 = class te extends p {
|
|
|
15006
15122
|
return this.faker.helpers.fake(this.faker.definitions.finance.transaction_description_pattern);
|
|
15007
15123
|
}
|
|
15008
15124
|
};
|
|
15009
|
-
function
|
|
15125
|
+
function Ze(i) {
|
|
15010
15126
|
return i.split(" ").map((e2) => e2.charAt(0).toUpperCase() + e2.slice(1)).join(" ");
|
|
15011
15127
|
}
|
|
15012
|
-
var
|
|
15128
|
+
var ie = class extends p {
|
|
15013
15129
|
adjective() {
|
|
15014
15130
|
return this.faker.helpers.arrayElement(this.faker.definitions.food.adjective);
|
|
15015
15131
|
}
|
|
@@ -15017,7 +15133,7 @@ var ae = class extends p {
|
|
|
15017
15133
|
return this.faker.helpers.fake(this.faker.definitions.food.description_pattern);
|
|
15018
15134
|
}
|
|
15019
15135
|
dish() {
|
|
15020
|
-
return this.faker.datatype.boolean() ?
|
|
15136
|
+
return this.faker.datatype.boolean() ? Ze(this.faker.helpers.fake(this.faker.definitions.food.dish_pattern)) : Ze(this.faker.helpers.arrayElement(this.faker.definitions.food.dish));
|
|
15021
15137
|
}
|
|
15022
15138
|
ethnicCategory() {
|
|
15023
15139
|
return this.faker.helpers.arrayElement(this.faker.definitions.food.ethnic_category);
|
|
@@ -15038,7 +15154,7 @@ var ae = class extends p {
|
|
|
15038
15154
|
return this.faker.helpers.arrayElement(this.faker.definitions.food.vegetable);
|
|
15039
15155
|
}
|
|
15040
15156
|
};
|
|
15041
|
-
var
|
|
15157
|
+
var Yr = " ", oe = class extends p {
|
|
15042
15158
|
branch() {
|
|
15043
15159
|
let e2 = this.faker.hacker.noun().replace(" ", "-"), r2 = this.faker.hacker.verb().replace(" ", "-");
|
|
15044
15160
|
return `${e2}-${r2}`;
|
|
@@ -15047,7 +15163,7 @@ var Wr = " ", ne = class extends p {
|
|
|
15047
15163
|
let { merge: r2 = this.faker.datatype.boolean({ probability: 0.2 }), eol: t2 = "CRLF", refDate: a2 } = e2, n2 = [`commit ${this.faker.git.commitSha()}`];
|
|
15048
15164
|
r2 && n2.push(`Merge: ${this.commitSha({ length: 7 })} ${this.commitSha({ length: 7 })}`);
|
|
15049
15165
|
let o2 = this.faker.person.firstName(), s2 = this.faker.person.lastName(), l2 = this.faker.person.fullName({ firstName: o2, lastName: s2 }), c2 = this.faker.internet.username({ firstName: o2, lastName: s2 }), u2 = this.faker.helpers.arrayElement([l2, c2]), h2 = this.faker.internet.email({ firstName: o2, lastName: s2 });
|
|
15050
|
-
u2 = u2.replaceAll(/^[.,:;"\\']|[<>\n]|[.,:;"\\']$/g, ""), n2.push(`Author: ${u2} <${h2}>`, `Date: ${this.commitDate({ refDate: a2 })}`, "", `${
|
|
15166
|
+
u2 = u2.replaceAll(/^[.,:;"\\']|[<>\n]|[.,:;"\\']$/g, ""), n2.push(`Author: ${u2} <${h2}>`, `Date: ${this.commitDate({ refDate: a2 })}`, "", `${Yr.repeat(4)}${this.commitMessage()}`, "");
|
|
15051
15167
|
let f2 = t2 === "CRLF" ? `\r
|
|
15052
15168
|
` : `
|
|
15053
15169
|
`;
|
|
@@ -15065,7 +15181,7 @@ var Wr = " ", ne = class extends p {
|
|
|
15065
15181
|
return this.faker.string.hexadecimal({ length: r2, casing: "lower", prefix: "" });
|
|
15066
15182
|
}
|
|
15067
15183
|
};
|
|
15068
|
-
var
|
|
15184
|
+
var se = class extends p {
|
|
15069
15185
|
abbreviation() {
|
|
15070
15186
|
return this.faker.helpers.arrayElement(this.faker.definitions.hacker.abbreviation);
|
|
15071
15187
|
}
|
|
@@ -15086,7 +15202,7 @@ var ie = class extends p {
|
|
|
15086
15202
|
return this.faker.helpers.mustache(r2, e2);
|
|
15087
15203
|
}
|
|
15088
15204
|
};
|
|
15089
|
-
var
|
|
15205
|
+
var ce = class extends p {
|
|
15090
15206
|
avatar() {
|
|
15091
15207
|
return this.faker.helpers.arrayElement([this.personPortrait, this.avatarGitHub])();
|
|
15092
15208
|
}
|
|
@@ -15119,99 +15235,10 @@ var oe = class extends p {
|
|
|
15119
15235
|
}
|
|
15120
15236
|
dataUri(e2 = {}) {
|
|
15121
15237
|
let { width: r2 = this.faker.number.int({ min: 1, max: 3999 }), height: t2 = this.faker.number.int({ min: 1, max: 3999 }), color: a2 = this.faker.color.rgb(), type: n2 = this.faker.helpers.arrayElement(["svg-uri", "svg-base64"]) } = e2, o2 = `<svg xmlns="http://www.w3.org/2000/svg" version="1.1" baseProfile="full" width="${r2}" height="${t2}"><rect width="100%" height="100%" fill="${a2}"/><text x="${r2 / 2}" y="${t2 / 2}" font-size="20" alignment-baseline="middle" text-anchor="middle" fill="white">${r2}x${t2}</text></svg>`;
|
|
15122
|
-
return n2 === "svg-uri" ? `data:image/svg+xml;charset=UTF-8,${encodeURIComponent(o2)}` : `data:image/svg+xml;base64,${
|
|
15238
|
+
return n2 === "svg-uri" ? `data:image/svg+xml;charset=UTF-8,${encodeURIComponent(o2)}` : `data:image/svg+xml;base64,${ge(o2)}`;
|
|
15123
15239
|
}
|
|
15124
15240
|
};
|
|
15125
|
-
|
|
15126
|
-
zipCode(e2 = {}) {
|
|
15127
|
-
typeof e2 == "string" && (e2 = { format: e2 });
|
|
15128
|
-
let { state: r2 } = e2;
|
|
15129
|
-
if (r2 != null) {
|
|
15130
|
-
let a2 = this.faker.definitions.location.postcode_by_state[r2];
|
|
15131
|
-
if (a2 == null) throw new m(`No zip code definition found for state "${r2}"`);
|
|
15132
|
-
return this.faker.helpers.fake(a2);
|
|
15133
|
-
}
|
|
15134
|
-
let { format: t2 = this.faker.definitions.location.postcode } = e2;
|
|
15135
|
-
return typeof t2 == "string" && (t2 = [t2]), t2 = this.faker.helpers.arrayElement(t2), this.faker.helpers.replaceSymbols(t2);
|
|
15136
|
-
}
|
|
15137
|
-
city() {
|
|
15138
|
-
return this.faker.helpers.fake(this.faker.definitions.location.city_pattern);
|
|
15139
|
-
}
|
|
15140
|
-
buildingNumber() {
|
|
15141
|
-
return this.faker.helpers.arrayElement(this.faker.definitions.location.building_number).replaceAll(/#+/g, (e2) => this.faker.string.numeric({ length: e2.length, allowLeadingZeros: false }));
|
|
15142
|
-
}
|
|
15143
|
-
street() {
|
|
15144
|
-
return this.faker.helpers.fake(this.faker.definitions.location.street_pattern);
|
|
15145
|
-
}
|
|
15146
|
-
streetAddress(e2 = {}) {
|
|
15147
|
-
typeof e2 == "boolean" && (e2 = { useFullAddress: e2 });
|
|
15148
|
-
let { useFullAddress: r2 } = e2, a2 = this.faker.definitions.location.street_address[r2 ? "full" : "normal"];
|
|
15149
|
-
return this.faker.helpers.fake(a2);
|
|
15150
|
-
}
|
|
15151
|
-
secondaryAddress() {
|
|
15152
|
-
return this.faker.helpers.fake(this.faker.definitions.location.secondary_address).replaceAll(/#+/g, (e2) => this.faker.string.numeric({ length: e2.length, allowLeadingZeros: false }));
|
|
15153
|
-
}
|
|
15154
|
-
county() {
|
|
15155
|
-
return this.faker.helpers.arrayElement(this.faker.definitions.location.county);
|
|
15156
|
-
}
|
|
15157
|
-
country() {
|
|
15158
|
-
return this.faker.helpers.arrayElement(this.faker.definitions.location.country);
|
|
15159
|
-
}
|
|
15160
|
-
continent() {
|
|
15161
|
-
return this.faker.helpers.arrayElement(this.faker.definitions.location.continent);
|
|
15162
|
-
}
|
|
15163
|
-
countryCode(e2 = {}) {
|
|
15164
|
-
typeof e2 == "string" && (e2 = { variant: e2 });
|
|
15165
|
-
let { variant: r2 = "alpha-2" } = e2, t2 = (() => {
|
|
15166
|
-
switch (r2) {
|
|
15167
|
-
case "numeric":
|
|
15168
|
-
return "numeric";
|
|
15169
|
-
case "alpha-3":
|
|
15170
|
-
return "alpha3";
|
|
15171
|
-
case "alpha-2":
|
|
15172
|
-
return "alpha2";
|
|
15173
|
-
}
|
|
15174
|
-
})();
|
|
15175
|
-
return this.faker.helpers.arrayElement(this.faker.definitions.location.country_code)[t2];
|
|
15176
|
-
}
|
|
15177
|
-
state(e2 = {}) {
|
|
15178
|
-
let { abbreviated: r2 = false } = e2, t2 = r2 ? this.faker.definitions.location.state_abbr : this.faker.definitions.location.state;
|
|
15179
|
-
return this.faker.helpers.arrayElement(t2);
|
|
15180
|
-
}
|
|
15181
|
-
latitude(e2 = {}) {
|
|
15182
|
-
let { max: r2 = 90, min: t2 = -90, precision: a2 = 4 } = e2;
|
|
15183
|
-
return this.faker.number.float({ min: t2, max: r2, fractionDigits: a2 });
|
|
15184
|
-
}
|
|
15185
|
-
longitude(e2 = {}) {
|
|
15186
|
-
let { max: r2 = 180, min: t2 = -180, precision: a2 = 4 } = e2;
|
|
15187
|
-
return this.faker.number.float({ max: r2, min: t2, fractionDigits: a2 });
|
|
15188
|
-
}
|
|
15189
|
-
direction(e2 = {}) {
|
|
15190
|
-
let { abbreviated: r2 = false } = e2;
|
|
15191
|
-
return r2 ? this.faker.helpers.arrayElement([...this.faker.definitions.location.direction.cardinal_abbr, ...this.faker.definitions.location.direction.ordinal_abbr]) : this.faker.helpers.arrayElement([...this.faker.definitions.location.direction.cardinal, ...this.faker.definitions.location.direction.ordinal]);
|
|
15192
|
-
}
|
|
15193
|
-
cardinalDirection(e2 = {}) {
|
|
15194
|
-
let { abbreviated: r2 = false } = e2;
|
|
15195
|
-
return r2 ? this.faker.helpers.arrayElement(this.faker.definitions.location.direction.cardinal_abbr) : this.faker.helpers.arrayElement(this.faker.definitions.location.direction.cardinal);
|
|
15196
|
-
}
|
|
15197
|
-
ordinalDirection(e2 = {}) {
|
|
15198
|
-
let { abbreviated: r2 = false } = e2;
|
|
15199
|
-
return r2 ? this.faker.helpers.arrayElement(this.faker.definitions.location.direction.ordinal_abbr) : this.faker.helpers.arrayElement(this.faker.definitions.location.direction.ordinal);
|
|
15200
|
-
}
|
|
15201
|
-
nearbyGPSCoordinate(e2 = {}) {
|
|
15202
|
-
let { origin: r2, radius: t2 = 10, isMetric: a2 = false } = e2;
|
|
15203
|
-
if (r2 == null) return [this.latitude(), this.longitude()];
|
|
15204
|
-
let n2 = this.faker.number.float({ max: 2 * Math.PI, fractionDigits: 5 }), o2 = a2 ? t2 : t2 * 1.60934, l2 = this.faker.number.float({ max: o2, fractionDigits: 3 }) * 0.995, c2 = 4e4 / 360, u2 = l2 / c2, h2 = [r2[0] + Math.sin(n2) * u2, r2[1] + Math.cos(n2) * u2];
|
|
15205
|
-
return h2[0] = h2[0] % 180, (h2[0] < -90 || h2[0] > 90) && (h2[0] = Math.sign(h2[0]) * 180 - h2[0], h2[1] += 180), h2[1] = (h2[1] % 360 + 540) % 360 - 180, [h2[0], h2[1]];
|
|
15206
|
-
}
|
|
15207
|
-
timeZone() {
|
|
15208
|
-
return this.faker.helpers.arrayElement(this.faker.definitions.location.time_zone);
|
|
15209
|
-
}
|
|
15210
|
-
language() {
|
|
15211
|
-
return this.faker.helpers.arrayElement(this.faker.definitions.location.language);
|
|
15212
|
-
}
|
|
15213
|
-
};
|
|
15214
|
-
function Ze(i, e2, r2 = (t2) => t2) {
|
|
15241
|
+
function Je(i, e2, r2 = (t2) => t2) {
|
|
15215
15242
|
let t2 = {};
|
|
15216
15243
|
for (let a2 of i) {
|
|
15217
15244
|
let n2 = e2(a2);
|
|
@@ -15219,10 +15246,10 @@ function Ze(i, e2, r2 = (t2) => t2) {
|
|
|
15219
15246
|
}
|
|
15220
15247
|
return t2;
|
|
15221
15248
|
}
|
|
15222
|
-
var
|
|
15249
|
+
var Te = { fail: () => {
|
|
15223
15250
|
throw new m("No words found that match the given length.");
|
|
15224
15251
|
}, closest: (i, e2) => {
|
|
15225
|
-
let r2 =
|
|
15252
|
+
let r2 = Je(i, (s2) => s2.length), t2 = Object.keys(r2).map(Number), a2 = Math.min(...t2), n2 = Math.max(...t2), o2 = Math.min(e2.min - a2, n2 - e2.max);
|
|
15226
15253
|
return i.filter((s2) => s2.length === e2.min - o2 || s2.length === e2.max + o2);
|
|
15227
15254
|
}, shortest: (i) => {
|
|
15228
15255
|
let e2 = Math.min(...i.map((r2) => r2.length));
|
|
@@ -15235,11 +15262,11 @@ function T(i) {
|
|
|
15235
15262
|
let { wordList: e2, length: r2, strategy: t2 = "any-length" } = i;
|
|
15236
15263
|
if (r2 != null) {
|
|
15237
15264
|
let a2 = typeof r2 == "number" ? (o2) => o2.length === r2 : (o2) => o2.length >= r2.min && o2.length <= r2.max, n2 = e2.filter(a2);
|
|
15238
|
-
return n2.length > 0 ? n2 : typeof r2 == "number" ?
|
|
15239
|
-
} else if (t2 === "shortest" || t2 === "longest") return
|
|
15265
|
+
return n2.length > 0 ? n2 : typeof r2 == "number" ? Te[t2](e2, { min: r2, max: r2 }) : Te[t2](e2, r2);
|
|
15266
|
+
} else if (t2 === "shortest" || t2 === "longest") return Te[t2](e2);
|
|
15240
15267
|
return [...e2];
|
|
15241
15268
|
}
|
|
15242
|
-
var
|
|
15269
|
+
var le = class extends p {
|
|
15243
15270
|
word(e2 = {}) {
|
|
15244
15271
|
return typeof e2 == "number" && (e2 = { length: e2 }), this.faker.helpers.arrayElement(T({ ...e2, wordList: this.faker.definitions.lorem.word }));
|
|
15245
15272
|
}
|
|
@@ -15273,7 +15300,7 @@ var ce = class extends p {
|
|
|
15273
15300
|
`);
|
|
15274
15301
|
}
|
|
15275
15302
|
};
|
|
15276
|
-
var
|
|
15303
|
+
var me = class extends p {
|
|
15277
15304
|
album() {
|
|
15278
15305
|
return this.faker.helpers.arrayElement(this.faker.definitions.music.album);
|
|
15279
15306
|
}
|
|
@@ -15287,18 +15314,18 @@ var le = class extends p {
|
|
|
15287
15314
|
return this.faker.helpers.arrayElement(this.faker.definitions.music.song_name);
|
|
15288
15315
|
}
|
|
15289
15316
|
};
|
|
15290
|
-
var
|
|
15317
|
+
var ue = class extends p {
|
|
15291
15318
|
number(e2 = {}) {
|
|
15292
15319
|
let { style: r2 = "human" } = e2, a2 = this.faker.definitions.phone_number.format[r2];
|
|
15293
15320
|
if (!a2) throw new Error(`No definitions for ${r2} in this locale`);
|
|
15294
15321
|
let n2 = this.faker.helpers.arrayElement(a2);
|
|
15295
|
-
return
|
|
15322
|
+
return Se(this.faker, n2);
|
|
15296
15323
|
}
|
|
15297
15324
|
imei() {
|
|
15298
15325
|
return this.faker.helpers.replaceCreditCardSymbols("##-######-######-L", "#");
|
|
15299
15326
|
}
|
|
15300
15327
|
};
|
|
15301
|
-
var
|
|
15328
|
+
var pe = class extends p {
|
|
15302
15329
|
chemicalElement() {
|
|
15303
15330
|
return this.faker.helpers.arrayElement(this.faker.definitions.science.chemical_element);
|
|
15304
15331
|
}
|
|
@@ -15306,7 +15333,7 @@ var ue = class extends p {
|
|
|
15306
15333
|
return this.faker.helpers.arrayElement(this.faker.definitions.science.unit);
|
|
15307
15334
|
}
|
|
15308
15335
|
};
|
|
15309
|
-
var
|
|
15336
|
+
var Zr = ["video", "audio", "image", "text", "application"], Jr = ["application/pdf", "audio/mpeg", "audio/wav", "image/png", "image/jpeg", "image/gif", "video/mp4", "video/mpeg", "text/html"], Xr = ["en", "wl", "ww"], Xe = { index: "o", slot: "s", mac: "x", pci: "p" }, Qr = ["SUN", "MON", "TUE", "WED", "THU", "FRI", "SAT"], he = class extends p {
|
|
15310
15337
|
fileName(e2 = {}) {
|
|
15311
15338
|
let { extensionCount: r2 = 1 } = e2, t2 = this.faker.word.words().toLowerCase().replaceAll(/\W/g, "_"), a2 = this.faker.helpers.multiple(() => this.fileExt(), { count: r2 }).join(".");
|
|
15312
15339
|
return a2.length === 0 ? t2 : `${t2}.${a2}`;
|
|
@@ -15319,10 +15346,10 @@ var Yr = ["video", "audio", "image", "text", "application"], Zr = ["application/
|
|
|
15319
15346
|
return this.faker.helpers.arrayElement(e2);
|
|
15320
15347
|
}
|
|
15321
15348
|
commonFileType() {
|
|
15322
|
-
return this.faker.helpers.arrayElement(
|
|
15349
|
+
return this.faker.helpers.arrayElement(Zr);
|
|
15323
15350
|
}
|
|
15324
15351
|
commonFileExt() {
|
|
15325
|
-
return this.fileExt(this.faker.helpers.arrayElement(
|
|
15352
|
+
return this.fileExt(this.faker.helpers.arrayElement(Jr));
|
|
15326
15353
|
}
|
|
15327
15354
|
fileType() {
|
|
15328
15355
|
let e2 = this.faker.definitions.system.mime_type, r2 = new Set(Object.keys(e2).map((t2) => t2.split("/")[0]));
|
|
@@ -15345,7 +15372,7 @@ var Yr = ["video", "audio", "image", "text", "application"], Zr = ["application/
|
|
|
15345
15372
|
return [this.faker.number.int(9), this.faker.number.int(20), this.faker.number.int(20)].join(".");
|
|
15346
15373
|
}
|
|
15347
15374
|
networkInterface(e2 = {}) {
|
|
15348
|
-
let { interfaceType: r2 = this.faker.helpers.arrayElement(
|
|
15375
|
+
let { interfaceType: r2 = this.faker.helpers.arrayElement(Xr), interfaceSchema: t2 = this.faker.helpers.objectKey(Xe) } = e2, a2, n2 = "";
|
|
15349
15376
|
switch (t2) {
|
|
15350
15377
|
case "index": {
|
|
15351
15378
|
a2 = this.faker.string.numeric();
|
|
@@ -15364,16 +15391,16 @@ var Yr = ["video", "audio", "image", "text", "application"], Zr = ["application/
|
|
|
15364
15391
|
break;
|
|
15365
15392
|
}
|
|
15366
15393
|
}
|
|
15367
|
-
return `${n2}${r2}${
|
|
15394
|
+
return `${n2}${r2}${Xe[t2]}${a2}`;
|
|
15368
15395
|
}
|
|
15369
15396
|
cron(e2 = {}) {
|
|
15370
|
-
let { includeYear: r2 = false, includeNonStandard: t2 = false } = e2, a2 = [this.faker.number.int(59), "*"], n2 = [this.faker.number.int(23), "*"], o2 = [this.faker.number.int({ min: 1, max: 31 }), "*", "?"], s2 = [this.faker.number.int({ min: 1, max: 12 }), "*"], l2 = [this.faker.number.int(6), this.faker.helpers.arrayElement(
|
|
15397
|
+
let { includeYear: r2 = false, includeNonStandard: t2 = false } = e2, a2 = [this.faker.number.int(59), "*"], n2 = [this.faker.number.int(23), "*"], o2 = [this.faker.number.int({ min: 1, max: 31 }), "*", "?"], s2 = [this.faker.number.int({ min: 1, max: 12 }), "*"], l2 = [this.faker.number.int(6), this.faker.helpers.arrayElement(Qr), "*", "?"], c2 = [this.faker.number.int({ min: 1970, max: 2099 }), "*"], u2 = this.faker.helpers.arrayElement(a2), h2 = this.faker.helpers.arrayElement(n2), f2 = this.faker.helpers.arrayElement(o2), g2 = this.faker.helpers.arrayElement(s2), b2 = this.faker.helpers.arrayElement(l2), y2 = this.faker.helpers.arrayElement(c2), N2 = `${u2} ${h2} ${f2} ${g2} ${b2}`;
|
|
15371
15398
|
r2 && (N2 += ` ${y2}`);
|
|
15372
15399
|
let k2 = ["@annually", "@daily", "@hourly", "@monthly", "@reboot", "@weekly", "@yearly"];
|
|
15373
15400
|
return !t2 || this.faker.datatype.boolean() ? N2 : this.faker.helpers.arrayElement(k2);
|
|
15374
15401
|
}
|
|
15375
15402
|
};
|
|
15376
|
-
var
|
|
15403
|
+
var fe = class extends p {
|
|
15377
15404
|
vehicle() {
|
|
15378
15405
|
return `${this.manufacturer()} ${this.model()}`;
|
|
15379
15406
|
}
|
|
@@ -15403,7 +15430,7 @@ var he = class extends p {
|
|
|
15403
15430
|
return this.faker.helpers.arrayElement(this.faker.definitions.vehicle.bicycle_type);
|
|
15404
15431
|
}
|
|
15405
15432
|
};
|
|
15406
|
-
var
|
|
15433
|
+
var be = class extends p {
|
|
15407
15434
|
adjective(e2 = {}) {
|
|
15408
15435
|
return typeof e2 == "number" && (e2 = { length: e2 }), this.faker.helpers.arrayElement(T({ ...e2, wordList: this.faker.definitions.word.adjective }));
|
|
15409
15436
|
}
|
|
@@ -15440,41 +15467,41 @@ var fe = class extends p {
|
|
|
15440
15467
|
return this.faker.helpers.multiple(() => this.sample(), { count: r2 }).join(" ");
|
|
15441
15468
|
}
|
|
15442
15469
|
};
|
|
15443
|
-
var
|
|
15470
|
+
var Qe = class extends I {
|
|
15444
15471
|
constructor(e2) {
|
|
15445
15472
|
super({ randomizer: e2.randomizer, seed: e2.seed });
|
|
15446
15473
|
__publicField(this, "rawDefinitions");
|
|
15447
15474
|
__publicField(this, "definitions");
|
|
15448
|
-
__publicField(this, "airline", new
|
|
15449
|
-
__publicField(this, "animal", new
|
|
15450
|
-
__publicField(this, "book", new
|
|
15451
|
-
__publicField(this, "color", new
|
|
15452
|
-
__publicField(this, "commerce", new
|
|
15453
|
-
__publicField(this, "company", new
|
|
15454
|
-
__publicField(this, "database", new
|
|
15455
|
-
__publicField(this, "date", new
|
|
15456
|
-
__publicField(this, "finance", new
|
|
15457
|
-
__publicField(this, "food", new
|
|
15458
|
-
__publicField(this, "git", new
|
|
15459
|
-
__publicField(this, "hacker", new
|
|
15460
|
-
__publicField(this, "helpers", new
|
|
15461
|
-
__publicField(this, "image", new
|
|
15462
|
-
__publicField(this, "internet", new
|
|
15463
|
-
__publicField(this, "location", new
|
|
15464
|
-
__publicField(this, "lorem", new
|
|
15465
|
-
__publicField(this, "music", new
|
|
15466
|
-
__publicField(this, "person", new
|
|
15467
|
-
__publicField(this, "phone", new
|
|
15468
|
-
__publicField(this, "science", new
|
|
15469
|
-
__publicField(this, "system", new
|
|
15470
|
-
__publicField(this, "vehicle", new
|
|
15471
|
-
__publicField(this, "word", new
|
|
15475
|
+
__publicField(this, "airline", new G(this));
|
|
15476
|
+
__publicField(this, "animal", new q(this));
|
|
15477
|
+
__publicField(this, "book", new ee(this));
|
|
15478
|
+
__publicField(this, "color", new O(this));
|
|
15479
|
+
__publicField(this, "commerce", new re$1(this));
|
|
15480
|
+
__publicField(this, "company", new te$1(this));
|
|
15481
|
+
__publicField(this, "database", new ae(this));
|
|
15482
|
+
__publicField(this, "date", new z(this));
|
|
15483
|
+
__publicField(this, "finance", new ne(this));
|
|
15484
|
+
__publicField(this, "food", new ie(this));
|
|
15485
|
+
__publicField(this, "git", new oe(this));
|
|
15486
|
+
__publicField(this, "hacker", new se(this));
|
|
15487
|
+
__publicField(this, "helpers", new W(this));
|
|
15488
|
+
__publicField(this, "image", new ce(this));
|
|
15489
|
+
__publicField(this, "internet", new U(this));
|
|
15490
|
+
__publicField(this, "location", new Y(this));
|
|
15491
|
+
__publicField(this, "lorem", new le(this));
|
|
15492
|
+
__publicField(this, "music", new me(this));
|
|
15493
|
+
__publicField(this, "person", new K(this));
|
|
15494
|
+
__publicField(this, "phone", new ue(this));
|
|
15495
|
+
__publicField(this, "science", new pe(this));
|
|
15496
|
+
__publicField(this, "system", new he(this));
|
|
15497
|
+
__publicField(this, "vehicle", new fe(this));
|
|
15498
|
+
__publicField(this, "word", new be(this));
|
|
15472
15499
|
let { locale: r2 } = e2;
|
|
15473
15500
|
if (Array.isArray(r2)) {
|
|
15474
15501
|
if (r2.length === 0) throw new m("The locale option must contain at least one locale definition.");
|
|
15475
|
-
r2 =
|
|
15502
|
+
r2 = Ye(r2);
|
|
15476
15503
|
}
|
|
15477
|
-
this.rawDefinitions = r2, this.definitions =
|
|
15504
|
+
this.rawDefinitions = r2, this.definitions = Ke(this.rawDefinitions);
|
|
15478
15505
|
}
|
|
15479
15506
|
get address() {
|
|
15480
15507
|
return w({ deprecated: "faker.address", proposed: "faker.location", since: "8.0", until: "10.0" }), this.location;
|
|
@@ -15486,29 +15513,29 @@ var Xe = class extends $ {
|
|
|
15486
15513
|
return this.rawDefinitions.metadata ?? {};
|
|
15487
15514
|
}
|
|
15488
15515
|
};
|
|
15489
|
-
var
|
|
15490
|
-
var
|
|
15491
|
-
var
|
|
15492
|
-
var
|
|
15493
|
-
var
|
|
15494
|
-
var
|
|
15495
|
-
var
|
|
15496
|
-
var
|
|
15497
|
-
var
|
|
15498
|
-
var
|
|
15499
|
-
var sr = { smiley: ["☠️", "☹️", "☺️", "❣️", "❤️", "❤️🔥", "❤️🩹", "👁️🗨️", "👹", "👺", "👻", "👽", "👾", "👿", "💀", "💋", "💌", "💓", "💔", "💕", "💖", "💗", "💘", "💙", "💚", "💛", "💜", "💝", "💞", "💟", "💢", "💣", "💤", "💥", "💦", "💨", "💩", "💫", "💬", "💭", "💯", "🕳️", "🖤", "🗨️", "🗯️", "😀", "😁", "😂", "😃", "😄", "😅", "😆", "😇", "😈", "😉", "😊", "😋", "😌", "😍", "😎", "😏", "😐", "😑", "😒", "😓", "😔", "😕", "😖", "😗", "😘", "😙", "😚", "😛", "😜", "😝", "😞", "😟", "😠", "😡", "😢", "😣", "😤", "😥", "😦", "😧", "😨", "😩", "😪", "😫", "😬", "😭", "😮", "😮💨", "😯", "😰", "😱", "😲", "😳", "😴", "😵", "😵💫", "😶", "😶🌫️", "😷", "😸", "😹", "😺", "😻", "😼", "😽", "😾", "😿", "🙀", "🙁", "🙂", "🙃", "🙄", "🙈", "🙉", "🙊", "🤍", "🤎", "🤐", "🤑", "🤒", "🤓", "🤔", "🤕", "🤖", "🤗", "🤠", "🤡", "🤢", "🤣", "🤤", "🤥", "🤧", "🤨", "🤩", "🤪", "🤫", "🤬", "🤭", "🤮", "🤯", "🥰", "🥱", "🥲", "🥳", "🥴", "🥵", "🥶", "🥸", "🥺", "🧐", "🧡"], body: ["☝🏻", "☝🏼", "☝🏽", "☝🏾", "☝🏿", "☝️", "✊", "✊🏻", "✊🏼", "✊🏽", "✊🏾", "✊🏿", "✋", "✋🏻", "✋🏼", "✋🏽", "✋🏾", "✋🏿", "✌🏻", "✌🏼", "✌🏽", "✌🏾", "✌🏿", "✌️", "✍🏻", "✍🏼", "✍🏽", "✍🏾", "✍🏿", "✍️", "👀", "👁️", "👂", "👂🏻", "👂🏼", "👂🏽", "👂🏾", "👂🏿", "👃", "👃🏻", "👃🏼", "👃🏽", "👃🏾", "👃🏿", "👄", "👅", "👆", "👆🏻", "👆🏼", "👆🏽", "👆🏾", "👆🏿", "👇", "👇🏻", "👇🏼", "👇🏽", "👇🏾", "👇🏿", "👈", "👈🏻", "👈🏼", "👈🏽", "👈🏾", "👈🏿", "👉", "👉🏻", "👉🏼", "👉🏽", "👉🏾", "👉🏿", "👊", "👊🏻", "👊🏼", "👊🏽", "👊🏾", "👊🏿", "👋", "👋🏻", "👋🏼", "👋🏽", "👋🏾", "👋🏿", "👌", "👌🏻", "👌🏼", "👌🏽", "👌🏾", "👌🏿", "👍", "👍🏻", "👍🏼", "👍🏽", "👍🏾", "👍🏿", "👎", "👎🏻", "👎🏼", "👎🏽", "👎🏾", "👎🏿", "👏", "👏🏻", "👏🏼", "👏🏽", "👏🏾", "👏🏿", "👐", "👐🏻", "👐🏼", "👐🏽", "👐🏾", "👐🏿", "💅", "💅🏻", "💅🏼", "💅🏽", "💅🏾", "💅🏿", "💪", "💪🏻", "💪🏼", "💪🏽", "💪🏾", "💪🏿", "🖐🏻", "🖐🏼", "🖐🏽", "🖐🏾", "🖐🏿", "🖐️", "🖕", "🖕🏻", "🖕🏼", "🖕🏽", "🖕🏾", "🖕🏿", "🖖", "🖖🏻", "🖖🏼", "🖖🏽", "🖖🏾", "🖖🏿", "🙌", "🙌🏻", "🙌🏼", "🙌🏽", "🙌🏾", "🙌🏿", "🙏", "🙏🏻", "🙏🏼", "🙏🏽", "🙏🏾", "🙏🏿", "🤌", "🤌🏻", "🤌🏼", "🤌🏽", "🤌🏾", "🤌🏿", "🤏", "🤏🏻", "🤏🏼", "🤏🏽", "🤏🏾", "🤏🏿", "🤘", "🤘🏻", "🤘🏼", "🤘🏽", "🤘🏾", "🤘🏿", "🤙", "🤙🏻", "🤙🏼", "🤙🏽", "🤙🏾", "🤙🏿", "🤚", "🤚🏻", "🤚🏼", "🤚🏽", "🤚🏾", "🤚🏿", "🤛", "🤛🏻", "🤛🏼", "🤛🏽", "🤛🏾", "🤛🏿", "🤜", "🤜🏻", "🤜🏼", "🤜🏽", "🤜🏾", "🤜🏿", "🤝", "🤞", "🤞🏻", "🤞🏼", "🤞🏽", "🤞🏾", "🤞🏿", "🤟", "🤟🏻", "🤟🏼", "🤟🏽", "🤟🏾", "🤟🏿", "🤲", "🤲🏻", "🤲🏼", "🤲🏽", "🤲🏾", "🤲🏿", "🤳", "🤳🏻", "🤳🏼", "🤳🏽", "🤳🏾", "🤳🏿", "🦴", "🦵", "🦵🏻", "🦵🏼", "🦵🏽", "🦵🏾", "🦵🏿", "🦶", "🦶🏻", "🦶🏼", "🦶🏽", "🦶🏾", "🦶🏿", "🦷", "🦻", "🦻🏻", "🦻🏼", "🦻🏽", "🦻🏾", "🦻🏿", "🦾", "🦿", "🧠", "🫀", "🫁"], person: ["🎅", "🎅🏻", "🎅🏼", "🎅🏽", "🎅🏾", "🎅🏿", "👦", "👦🏻", "👦🏼", "👦🏽", "👦🏾", "👦🏿", "👧", "👧🏻", "👧🏼", "👧🏽", "👧🏾", "👧🏿", "👨", "👨⚕️", "👨⚖️", "👨✈️", "👨🌾", "👨🍳", "👨🍼", "👨🎓", "👨🎤", "👨🎨", "👨🏫", "👨🏭", "👨💻", "👨💼", "👨🔧", "👨🔬", "👨🚀", "👨🚒", "👨🦰", "👨🦱", "👨🦲", "👨🦳", "👨🏻", "👨🏻⚕️", "👨🏻⚖️", "👨🏻✈️", "👨🏻🌾", "👨🏻🍳", "👨🏻🍼", "👨🏻🎓", "👨🏻🎤", "👨🏻🎨", "👨🏻🏫", "👨🏻🏭", "👨🏻💻", "👨🏻💼", "👨🏻🔧", "👨🏻🔬", "👨🏻🚀", "👨🏻🚒", "👨🏻🦰", "👨🏻🦱", "👨🏻🦲", "👨🏻🦳", "👨🏼", "👨🏼⚕️", "👨🏼⚖️", "👨🏼✈️", "👨🏼🌾", "👨🏼🍳", "👨🏼🍼", "👨🏼🎓", "👨🏼🎤", "👨🏼🎨", "👨🏼🏫", "👨🏼🏭", "👨🏼💻", "👨🏼💼", "👨🏼🔧", "👨🏼🔬", "👨🏼🚀", "👨🏼🚒", "👨🏼🦰", "👨🏼🦱", "👨🏼🦲", "👨🏼🦳", "👨🏽", "👨🏽⚕️", "👨🏽⚖️", "👨🏽✈️", "👨🏽🌾", "👨🏽🍳", "👨🏽🍼", "👨🏽🎓", "👨🏽🎤", "👨🏽🎨", "👨🏽🏫", "👨🏽🏭", "👨🏽💻", "👨🏽💼", "👨🏽🔧", "👨🏽🔬", "👨🏽🚀", "👨🏽🚒", "👨🏽🦰", "👨🏽🦱", "👨🏽🦲", "👨🏽🦳", "👨🏾", "👨🏾⚕️", "👨🏾⚖️", "👨🏾✈️", "👨🏾🌾", "👨🏾🍳", "👨🏾🍼", "👨🏾🎓", "👨🏾🎤", "👨🏾🎨", "👨🏾🏫", "👨🏾🏭", "👨🏾💻", "👨🏾💼", "👨🏾🔧", "👨🏾🔬", "👨🏾🚀", "👨🏾🚒", "👨🏾🦰", "👨🏾🦱", "👨🏾🦲", "👨🏾🦳", "👨🏿", "👨🏿⚕️", "👨🏿⚖️", "👨🏿✈️", "👨🏿🌾", "👨🏿🍳", "👨🏿🍼", "👨🏿🎓", "👨🏿🎤", "👨🏿🎨", "👨🏿🏫", "👨🏿🏭", "👨🏿💻", "👨🏿💼", "👨🏿🔧", "👨🏿🔬", "👨🏿🚀", "👨🏿🚒", "👨🏿🦰", "👨🏿🦱", "👨🏿🦲", "👨🏿🦳", "👩", "👩⚕️", "👩⚖️", "👩✈️", "👩🌾", "👩🍳", "👩🍼", "👩🎓", "👩🎤", "👩🎨", "👩🏫", "👩🏭", "👩💻", "👩💼", "👩🔧", "👩🔬", "👩🚀", "👩🚒", "👩🦰", "👩🦱", "👩🦲", "👩🦳", "👩🏻", "👩🏻⚕️", "👩🏻⚖️", "👩🏻✈️", "👩🏻🌾", "👩🏻🍳", "👩🏻🍼", "👩🏻🎓", "👩🏻🎤", "👩🏻🎨", "👩🏻🏫", "👩🏻🏭", "👩🏻💻", "👩🏻💼", "👩🏻🔧", "👩🏻🔬", "👩🏻🚀", "👩🏻🚒", "👩🏻🦰", "👩🏻🦱", "👩🏻🦲", "👩🏻🦳", "👩🏼", "👩🏼⚕️", "👩🏼⚖️", "👩🏼✈️", "👩🏼🌾", "👩🏼🍳", "👩🏼🍼", "👩🏼🎓", "👩🏼🎤", "👩🏼🎨", "👩🏼🏫", "👩🏼🏭", "👩🏼💻", "👩🏼💼", "👩🏼🔧", "👩🏼🔬", "👩🏼🚀", "👩🏼🚒", "👩🏼🦰", "👩🏼🦱", "👩🏼🦲", "👩🏼🦳", "👩🏽", "👩🏽⚕️", "👩🏽⚖️", "👩🏽✈️", "👩🏽🌾", "👩🏽🍳", "👩🏽🍼", "👩🏽🎓", "👩🏽🎤", "👩🏽🎨", "👩🏽🏫", "👩🏽🏭", "👩🏽💻", "👩🏽💼", "👩🏽🔧", "👩🏽🔬", "👩🏽🚀", "👩🏽🚒", "👩🏽🦰", "👩🏽🦱", "👩🏽🦲", "👩🏽🦳", "👩🏾", "👩🏾⚕️", "👩🏾⚖️", "👩🏾✈️", "👩🏾🌾", "👩🏾🍳", "👩🏾🍼", "👩🏾🎓", "👩🏾🎤", "👩🏾🎨", "👩🏾🏫", "👩🏾🏭", "👩🏾💻", "👩🏾💼", "👩🏾🔧", "👩🏾🔬", "👩🏾🚀", "👩🏾🚒", "👩🏾🦰", "👩🏾🦱", "👩🏾🦲", "👩🏾🦳", "👩🏿", "👩🏿⚕️", "👩🏿⚖️", "👩🏿✈️", "👩🏿🌾", "👩🏿🍳", "👩🏿🍼", "👩🏿🎓", "👩🏿🎤", "👩🏿🎨", "👩🏿🏫", "👩🏿🏭", "👩🏿💻", "👩🏿💼", "👩🏿🔧", "👩🏿🔬", "👩🏿🚀", "👩🏿🚒", "👩🏿🦰", "👩🏿🦱", "👩🏿🦲", "👩🏿🦳", "👮", "👮♀️", "👮♂️", "👮🏻", "👮🏻♀️", "👮🏻♂️", "👮🏼", "👮🏼♀️", "👮🏼♂️", "👮🏽", "👮🏽♀️", "👮🏽♂️", "👮🏾", "👮🏾♀️", "👮🏾♂️", "👮🏿", "👮🏿♀️", "👮🏿♂️", "👰", "👰♀️", "👰♂️", "👰🏻", "👰🏻♀️", "👰🏻♂️", "👰🏼", "👰🏼♀️", "👰🏼♂️", "👰🏽", "👰🏽♀️", "👰🏽♂️", "👰🏾", "👰🏾♀️", "👰🏾♂️", "👰🏿", "👰🏿♀️", "👰🏿♂️", "👱", "👱♀️", "👱♂️", "👱🏻", "👱🏻♀️", "👱🏻♂️", "👱🏼", "👱🏼♀️", "👱🏼♂️", "👱🏽", "👱🏽♀️", "👱🏽♂️", "👱🏾", "👱🏾♀️", "👱🏾♂️", "👱🏿", "👱🏿♀️", "👱🏿♂️", "👲", "👲🏻", "👲🏼", "👲🏽", "👲🏾", "👲🏿", "👳", "👳♀️", "👳♂️", "👳🏻", "👳🏻♀️", "👳🏻♂️", "👳🏼", "👳🏼♀️", "👳🏼♂️", "👳🏽", "👳🏽♀️", "👳🏽♂️", "👳🏾", "👳🏾♀️", "👳🏾♂️", "👳🏿", "👳🏿♀️", "👳🏿♂️", "👴", "👴🏻", "👴🏼", "👴🏽", "👴🏾", "👴🏿", "👵", "👵🏻", "👵🏼", "👵🏽", "👵🏾", "👵🏿", "👶", "👶🏻", "👶🏼", "👶🏽", "👶🏾", "👶🏿", "👷", "👷♀️", "👷♂️", "👷🏻", "👷🏻♀️", "👷🏻♂️", "👷🏼", "👷🏼♀️", "👷🏼♂️", "👷🏽", "👷🏽♀️", "👷🏽♂️", "👷🏾", "👷🏾♀️", "👷🏾♂️", "👷🏿", "👷🏿♀️", "👷🏿♂️", "👸", "👸🏻", "👸🏼", "👸🏽", "👸🏾", "👸🏿", "👼", "👼🏻", "👼🏼", "👼🏽", "👼🏾", "👼🏿", "💁", "💁♀️", "💁♂️", "💁🏻", "💁🏻♀️", "💁🏻♂️", "💁🏼", "💁🏼♀️", "💁🏼♂️", "💁🏽", "💁🏽♀️", "💁🏽♂️", "💁🏾", "💁🏾♀️", "💁🏾♂️", "💁🏿", "💁🏿♀️", "💁🏿♂️", "💂", "💂♀️", "💂♂️", "💂🏻", "💂🏻♀️", "💂🏻♂️", "💂🏼", "💂🏼♀️", "💂🏼♂️", "💂🏽", "💂🏽♀️", "💂🏽♂️", "💂🏾", "💂🏾♀️", "💂🏾♂️", "💂🏿", "💂🏿♀️", "💂🏿♂️", "💆", "💆♀️", "💆♂️", "💆🏻", "💆🏻♀️", "💆🏻♂️", "💆🏼", "💆🏼♀️", "💆🏼♂️", "💆🏽", "💆🏽♀️", "💆🏽♂️", "💆🏾", "💆🏾♀️", "💆🏾♂️", "💆🏿", "💆🏿♀️", "💆🏿♂️", "💇", "💇🏻", "💇🏼", "💇🏽", "🕵🏻", "🕵🏻♀️", "🕵🏻♂️", "🕵🏼", "🕵🏼♀️", "🕵🏼♂️", "🕵🏽", "🕵🏽♀️", "🕵🏽♂️", "🕵🏾", "🕵🏾♀️", "🕵🏾♂️", "🕵🏿", "🕵🏿♀️", "🕵🏿♂️", "🕵️", "🕵️♀️", "🕵️♂️", "🙅", "🙅♀️", "🙅♂️", "🙅🏻", "🙅🏻♀️", "🙅🏻♂️", "🙅🏼", "🙅🏼♀️", "🙅🏼♂️", "🙅🏽", "🙅🏽♀️", "🙅🏽♂️", "🙅🏾", "🙅🏾♀️", "🙅🏾♂️", "🙅🏿", "🙅🏿♀️", "🙅🏿♂️", "🙆", "🙆♀️", "🙆♂️", "🙆🏻", "🙆🏻♀️", "🙆🏻♂️", "🙆🏼", "🙆🏼♀️", "🙆🏼♂️", "🙆🏽", "🙆🏽♀️", "🙆🏽♂️", "🙆🏾", "🙆🏾♀️", "🙆🏾♂️", "🙆🏿", "🙆🏿♀️", "🙆🏿♂️", "🙇", "🙇♀️", "🙇♂️", "🙇🏻", "🙇🏻♀️", "🙇🏻♂️", "🙇🏼", "🙇🏼♀️", "🙇🏼♂️", "🙇🏽", "🙇🏽♀️", "🙇🏽♂️", "🙇🏾", "🙇🏾♀️", "🙇🏾♂️", "🙇🏿", "🙇🏿♀️", "🙇🏿♂️", "🙋", "🙋♀️", "🙋♂️", "🙋🏻", "🙋🏻♀️", "🙋🏻♂️", "🙋🏼", "🙋🏼♀️", "🙋🏼♂️", "🙋🏽", "🙋🏽♀️", "🙋🏽♂️", "🙋🏾", "🙋🏾♀️", "🙋🏾♂️", "🙋🏿", "🙋🏿♀️", "🙋🏿♂️", "🙍", "🙍♀️", "🙍♂️", "🙍🏻", "🙍🏻♀️", "🙍🏻♂️", "🙍🏼", "🙍🏼♀️", "🙍🏼♂️", "🙍🏽", "🙍🏽♀️", "🙍🏽♂️", "🙍🏾", "🙍🏾♀️", "🙍🏾♂️", "🙍🏿", "🙍🏿♀️", "🙍🏿♂️", "🙎", "🙎♀️", "🙎♂️", "🙎🏻", "🙎🏻♀️", "🙎🏻♂️", "🙎🏼", "🙎🏼♀️", "🙎🏼♂️", "🙎🏽", "🙎🏽♀️", "🙎🏽♂️", "🙎🏾", "🙎🏾♀️", "🙎🏾♂️", "🙎🏿", "🙎🏿♀️", "🙎🏿♂️", "🤦", "🤦♀️", "🤦♂️", "🤦🏻", "🤦🏻♀️", "🤦🏻♂️", "🤦🏼", "🤦🏼♀️", "🤦🏼♂️", "🤦🏽", "🤦🏽♀️", "🤦🏽♂️", "🤦🏾", "🤦🏾♀️", "🤦🏾♂️", "🤦🏿", "🤦🏿♀️", "🤦🏿♂️", "🤰", "🤰🏻", "🤰🏼", "🤰🏽", "🤰🏾", "🤰🏿", "🤱", "🤱🏻", "🤱🏼", "🤱🏽", "🤱🏾", "🤱🏿", "🤴", "🤴🏻", "🤴🏼", "🤴🏽", "🤴🏾", "🤴🏿", "🤵", "🤵♀️", "🤵♂️", "🤵🏻", "🤵🏻♀️", "🤵🏻♂️", "🤵🏼", "🤵🏼♀️", "🤵🏼♂️", "🤵🏽", "🤵🏽♀️", "🤵🏽♂️", "🤵🏾", "🤵🏾♀️", "🤵🏾♂️", "🤵🏿", "🤵🏿♀️", "🤵🏿♂️", "🤶", "🤶🏻", "🤶🏼", "🤶🏽", "🤶🏾", "🤶🏿", "🤷", "🤷♀️", "🤷♂️", "🤷🏻", "🤷🏻♀️", "🤷🏻♂️", "🤷🏼", "🤷🏼♀️", "🤷🏼♂️", "🤷🏽", "🤷🏽♀️", "🤷🏽♂️", "🤷🏾", "🤷🏾♀️", "🤷🏾♂️", "🤷🏿", "🤷🏿♀️", "🤷🏿♂️", "🥷", "🥷🏻", "🥷🏼", "🥷🏽", "🥷🏾", "🥷🏿", "🦸", "🦸♀️", "🦸♂️", "🦸🏻", "🦸🏻♀️", "🦸🏻♂️", "🦸🏼", "🦸🏼♀️", "🦸🏼♂️", "🦸🏽", "🦸🏽♀️", "🦸🏽♂️", "🦸🏾", "🦸🏾♀️", "🦸🏾♂️", "🦸🏿", "🦸🏿♀️", "🦸🏿♂️", "🦹", "🦹♀️", "🦹♂️", "🦹🏻", "🦹🏻♀️", "🦹🏻♂️", "🦹🏼", "🦹🏼♀️", "🦹🏼♂️", "🦹🏽", "🦹🏽♀️", "🦹🏽♂️", "🦹🏾", "🦹🏾♀️", "🦹🏾♂️", "🦹🏿", "🦹🏿♀️", "🦹🏿♂️", "🧏", "🧏♀️", "🧏♂️", "🧏🏻", "🧏🏻♀️", "🧏🏻♂️", "🧏🏼", "🧏🏼♀️", "🧏🏼♂️", "🧏🏽", "🧏🏽♀️", "🧏🏽♂️", "🧏🏾", "🧏🏾♀️", "🧏🏾♂️", "🧏🏿", "🧏🏿♀️", "🧏🏿♂️", "🧑", "🧑⚕️", "🧑⚖️", "🧑✈️", "🧑🌾", "🧑🍳", "🧑🍼", "🧑🎄", "🧑🎓", "🧑🎤", "🧑🎨", "🧑🏫", "🧑🏭", "🧑💻", "🧑💼", "🧑🔧", "🧑🔬", "🧑🚀", "🧑🚒", "🧑🦰", "🧑🦱", "🧑🦲", "🧑🦳", "🧑🏻", "🧑🏻⚕️", "🧑🏻⚖️", "🧑🏻✈️", "🧑🏻🌾", "🧑🏻🍳", "🧑🏻🍼", "🧑🏻🎄", "🧑🏻🎓", "🧑🏻🎤", "🧑🏻🎨", "🧑🏻🏫", "🧑🏻🏭", "🧑🏻💻", "🧑🏻💼", "🧑🏻🔧", "🧑🏻🔬", "🧑🏻🚀", "🧑🏻🚒", "🧑🏻🦰", "🧑🏻🦱", "🧑🏻🦲", "🧑🏻🦳", "🧑🏼", "🧑🏼⚕️", "🧑🏼⚖️", "🧑🏼✈️", "🧑🏼🌾", "🧑🏼🍳", "🧑🏼🍼", "🧑🏼🎄", "🧑🏼🎓", "🧑🏼🎤", "🧑🏼🎨", "🧑🏼🏫", "🧑🏼🏭", "🧑🏼💻", "🧑🏼💼", "🧑🏼🔧", "🧑🏼🔬", "🧑🏼🚀", "🧑🏼🚒", "🧑🏼🦰", "🧑🏼🦱", "🧑🏼🦲", "🧑🏼🦳", "🧑🏽", "🧑🏽⚕️", "🧑🏽⚖️", "🧑🏽✈️", "🧑🏽🌾", "🧑🏽🍳", "🧑🏽🍼", "🧑🏽🎄", "🧑🏽🎓", "🧑🏽🎤", "🧑🏽🎨", "🧑🏽🏫", "🧑🏽🏭", "🧑🏽💻", "🧑🏽💼", "🧑🏽🔧", "🧑🏽🔬", "🧑🏽🚀", "🧑🏽🚒", "🧑🏽🦰", "🧑🏽🦱", "🧑🏽🦲", "🧑🏽🦳", "🧑🏾", "🧑🏾⚕️", "🧑🏾⚖️", "🧑🏾✈️", "🧑🏾🌾", "🧑🏾🍳", "🧑🏾🍼", "🧑🏾🎄", "🧑🏾🎓", "🧑🏾🎤", "🧑🏾🎨", "🧑🏾🏫", "🧑🏾🏭", "🧑🏾💻", "🧑🏾💼", "🧑🏾🔧", "🧑🏾🔬", "🧑🏾🚀", "🧑🏾🚒", "🧑🏾🦰", "🧑🏾🦱", "🧑🏾🦲", "🧑🏾🦳", "🧑🏿", "🧑🏿⚕️", "🧑🏿⚖️", "🧑🏿✈️", "🧑🏿🌾", "🧑🏿🍳", "🧑🏿🍼", "🧑🏿🎄", "🧑🏿🎓", "🧑🏿🎤", "🧑🏿🎨", "🧑🏿🏫", "🧑🏿🏭", "🧑🏿💻", "🧑🏿💼", "🧑🏿🔧", "🧑🏿🔬", "🧑🏿🚀", "🧑🏿🚒", "🧑🏿🦰", "🧑🏿🦱", "🧑🏿🦲", "🧑🏿🦳", "🧒", "🧒🏻", "🧒🏼", "🧒🏽", "🧒🏾", "🧒🏿", "🧓", "🧓🏻", "🧓🏼", "🧓🏽", "🧓🏾", "🧓🏿", "🧔", "🧔♀️", "🧔♂️", "🧔🏻", "🧔🏻♀️", "🧔🏻♂️", "🧔🏼", "🧔🏼♀️", "🧔🏼♂️", "🧔🏽", "🧔🏽♀️", "🧔🏽♂️", "🧔🏾", "🧔🏾♀️", "🧔🏾♂️", "🧔🏿", "🧔🏿♀️", "🧔🏿♂️", "🧕", "🧕🏻", "🧕🏼", "🧕🏽", "🧕🏾", "🧕🏿", "🧙", "🧙♀️", "🧙♂️", "🧙🏻", "🧙🏻♀️", "🧙🏻♂️", "🧙🏼", "🧙🏼♀️", "🧙🏼♂️", "🧙🏽", "🧙🏽♀️", "🧙🏽♂️", "🧙🏾", "🧙🏾♀️", "🧙🏾♂️", "🧙🏿", "🧙🏿♀️", "🧙🏿♂️", "🧚", "🧚♀️", "🧚♂️", "🧚🏻", "🧚🏻♀️", "🧚🏻♂️", "🧚🏼", "🧚🏼♀️", "🧚🏼♂️", "🧚🏽", "🧚🏽♀️", "🧚🏽♂️", "🧚🏾", "🧚🏾♀️", "🧚🏾♂️", "🧚🏿", "🧚🏿♀️", "🧚🏿♂️", "🧛", "🧛♀️", "🧛♂️", "🧛🏻", "🧛🏻♀️", "🧛🏻♂️", "🧛🏼", "🧛🏼♀️", "🧛🏼♂️", "🧛🏽", "🧛🏽♀️", "🧛🏽♂️", "🧛🏾", "🧛🏾♀️", "🧛🏾♂️", "🧛🏿", "🧛🏿♀️", "🧛🏿♂️", "🧜", "🧜♀️", "🧜♂️", "🧜🏻", "🧜🏻♀️", "🧜🏻♂️", "🧜🏼", "🧜🏼♀️", "🧜🏼♂️", "🧜🏽", "🧜🏽♀️", "🧜🏽♂️", "🧜🏾", "🧜🏾♀️", "🧜🏾♂️", "🧜🏿", "🧜🏿♀️", "🧜🏿♂️", "🧝", "🧝♀️", "🧝♂️", "🧝🏻", "🧝🏻♀️", "🧝🏻♂️", "🧝🏼", "🧝🏼♀️", "🧝🏼♂️", "🧝🏽", "🧝🏽♀️", "🧝🏽♂️", "🧝🏾", "🧝🏾♀️", "🧝🏾♂️", "🧝🏿", "🧝🏿♀️", "🧝🏿♂️", "🧞", "🧞♀️", "🧞♂️", "🧟", "🧟♀️", "🧟♂️"], nature: ["☘️", "🌱", "🌲", "🌳", "🌴", "🌵", "🌷", "🌸", "🌹", "🌺", "🌻", "🌼", "🌾", "🌿", "🍀", "🍁", "🍂", "🍃", "🏵️", "🐀", "🐁", "🐂", "🐃", "🐄", "🐅", "🐆", "🐇", "🐈", "🐈⬛", "🐉", "🐊", "🐋", "🐌", "🐍", "🐎", "🐏", "🐐", "🐑", "🐒", "🐓", "🐔", "🐕", "🐕🦺", "🐖", "🐗", "🐘", "🐙", "🐚", "🐛", "🐜", "🐝", "🐞", "🐟", "🐠", "🐡", "🐢", "🐣", "🐤", "🐥", "🐦", "🐧", "🐨", "🐩", "🐪", "🐫", "🐬", "🐭", "🐮", "🐯", "🐰", "🐱", "🐲", "🐳", "🐴", "🐵", "🐶", "🐷", "🐸", "🐹", "🐺", "🐻", "🐻❄️", "🐼", "🐽", "🐾", "🐿️", "💐", "💮", "🕊️", "🕷️", "🕸️", "🥀", "🦁", "🦂", "🦃", "🦄", "🦅", "🦆", "🦇", "🦈", "🦉", "🦊", "🦋", "🦌", "🦍", "🦎", "🦏", "🦒", "🦓", "🦔", "🦕", "🦖", "🦗", "🦘", "🦙", "🦚", "🦛", "🦜", "🦝", "🦟", "🦠", "🦡", "🦢", "🦣", "🦤", "🦥", "🦦", "🦧", "🦨", "🦩", "🦫", "🦬", "🦭", "🦮", "🪰", "🪱", "🪲", "🪳", "🪴", "🪶"], food: ["☕", "🌭", "🌮", "🌯", "🌰", "🌶️", "🌽", "🍄", "🍅", "🍆", "🍇", "🍈", "🍉", "🍊", "🍋", "🍌", "🍍", "🍎", "🍏", "🍐", "🍑", "🍒", "🍓", "🍔", "🍕", "🍖", "🍗", "🍘", "🍙", "🍚", "🍛", "🍜", "🍝", "🍞", "🍟", "🍠", "🍡", "🍢", "🍣", "🍤", "🍥", "🍦", "🍧", "🍨", "🍩", "🍪", "🍫", "🍬", "🍭", "🍮", "🍯", "🍰", "🍱", "🍲", "🍳", "🍴", "🍵", "🍶", "🍷", "🍸", "🍹", "🍺", "🍻", "🍼", "🍽️", "🍾", "🍿", "🎂", "🏺", "🔪", "🥂", "🥃", "🥄", "🥐", "🥑", "🥒", "🥓", "🥔", "🥕", "🥖", "🥗", "🥘", "🥙", "🥚", "🥛", "🥜", "🥝", "🥞", "🥟", "🥠", "🥡", "🥢", "🥣", "🥤", "🥥", "🥦", "🥧", "🥨", "🥩", "🥪", "🥫", "🥬", "🥭", "🥮", "🥯", "🦀", "🦐", "🦑", "🦞", "🦪", "🧀", "🧁", "🧂", "🧃", "🧄", "🧅", "🧆", "🧇", "🧈", "🧉", "🧊", "🧋", "🫐", "🫑", "🫒", "🫓", "🫔", "🫕", "🫖"], travel: ["⌚", "⌛", "⏰", "⏱️", "⏲️", "⏳", "☀️", "☁️", "☂️", "☃️", "☄️", "☔", "♨️", "⚓", "⚡", "⛄", "⛅", "⛈️", "⛩️", "⛪", "⛰️", "⛱️", "⛲", "⛴️", "⛵", "⛺", "⛽", "✈️", "❄️", "⭐", "🌀", "🌁", "🌂", "🌃", "🌄", "🌅", "🌆", "🌇", "🌈", "🌉", "🌊", "🌋", "🌌", "🌍", "🌎", "🌏", "🌐", "🌑", "🌒", "🌓", "🌔", "🌕", "🌖", "🌗", "🌘", "🌙", "🌚", "🌛", "🌜", "🌝", "🌞", "🌟", "🌠", "🌡️", "🌤️", "🌥️", "🌦️", "🌧️", "🌨️", "🌩️", "🌪️", "🌫️", "🌬️", "🎠", "🎡", "🎢", "🎪", "🏍️", "🏎️", "🏔️", "🏕️", "🏖️", "🏗️", "🏘️", "🏙️", "🏚️", "🏛️", "🏜️", "🏝️", "🏞️", "🏟️", "🏠", "🏡", "🏢", "🏣", "🏤", "🏥", "🏦", "🏨", "🏩", "🏪", "🏫", "🏬", "🏭", "🏯", "🏰", "💈", "💒", "💧", "💺", "🔥", "🕋", "🕌", "🕍", "🕐", "🕑", "🕒", "🕓", "🕔", "🕕", "🕖", "🕗", "🕘", "🕙", "🕚", "🕛", "🕜", "🕝", "🕞", "🕟", "🕠", "🕡", "🕢", "🕣", "🕤", "🕥", "🕦", "🕧", "🕰️", "🗺️", "🗻", "🗼", "🗽", "🗾", "🚀", "🚁", "🚂", "🚃", "🚄", "🚅", "🚆", "🚇", "🚈", "🚉", "🚊", "🚋", "🚌", "🚍", "🚎", "🚏", "🚐", "🚑", "🚒", "🚓", "🚔", "🚕", "🚖", "🚗", "🚘", "🚙", "🚚", "🚛", "🚜", "🚝", "🚞", "🚟", "🚠", "🚡", "🚢", "🚤", "🚥", "🚦", "🚧", "🚨", "🚲", "🛎️", "🛑", "🛕", "🛖", "🛢️", "🛣️", "🛤️", "🛥️", "🛩️", "🛫", "🛬", "🛰️", "🛳️", "🛴", "🛵", "🛶", "🛸", "🛹", "🛺", "🛻", "🛼", "🦼", "🦽", "🧭", "🧱", "🧳", "🪂", "🪐", "🪨", "🪵"], activity: ["♟️", "♠️", "♣️", "♥️", "♦️", "⚽", "⚾", "⛳", "⛸️", "✨", "🀄", "🃏", "🎀", "🎁", "🎃", "🎄", "🎆", "🎇", "🎈", "🎉", "🎊", "🎋", "🎍", "🎎", "🎏", "🎐", "🎑", "🎖️", "🎗️", "🎟️", "🎣", "🎨", "🎫", "🎭", "🎮", "🎯", "🎰", "🎱", "🎲", "🎳", "🎴", "🎽", "🎾", "🎿", "🏀", "🏅", "🏆", "🏈", "🏉", "🏏", "🏐", "🏑", "🏒", "🏓", "🏸", "🔮", "🕹️", "🖼️", "🛷", "🤿", "🥅", "🥇", "🥈", "🥉", "🥊", "🥋", "🥌", "🥍", "🥎", "🥏", "🧧", "🧨", "🧩", "🧵", "🧶", "🧸", "🧿", "🪀", "🪁", "🪄", "🪅", "🪆", "🪡", "🪢"], object: ["⌨️", "☎️", "⚒️", "⚔️", "⚖️", "⚗️", "⚙️", "⚰️", "⚱️", "⛏️", "⛑️", "⛓️", "✂️", "✉️", "✏️", "✒️", "🎒", "🎓", "🎙️", "🎚️", "🎛️", "🎞️", "🎤", "🎥", "🎧", "🎩", "🎬", "🎵", "🎶", "🎷", "🎸", "🎹", "🎺", "🎻", "🎼", "🏮", "🏷️", "🏹", "👑", "👒", "👓", "👔", "👕", "👖", "👗", "👘", "👙", "👚", "👛", "👜", "👝", "👞", "👟", "👠", "👡", "👢", "💄", "💉", "💊", "💍", "💎", "💡", "💰", "💳", "💴", "💵", "💶", "💷", "💸", "💹", "💻", "💼", "💽", "💾", "💿", "📀", "📁", "📂", "📃", "📄", "📅", "📆", "📇", "📈", "📉", "📊", "📋", "📌", "📍", "📎", "📏", "📐", "📑", "📒", "📓", "📔", "📕", "📖", "📗", "📘", "📙", "📚", "📜", "📝", "📞", "📟", "📠", "📡", "📢", "📣", "📤", "📥", "📦", "📧", "📨", "📩", "📪", "📫", "📬", "📭", "📮", "📯", "📰", "📱", "📲", "📷", "📸", "📹", "📺", "📻", "📼", "📽️", "📿", "🔇", "🔈", "🔉", "🔊", "🔋", "🔌", "🔍", "🔎", "🔏", "🔐", "🔑", "🔒", "🔓", "🔔", "🔕", "🔖", "🔗", "🔦", "🔧", "🔨", "🔩", "🔫", "🔬", "🔭", "🕯️", "🕶️", "🖇️", "🖊️", "🖋️", "🖌️", "🖍️", "🖥️", "🖨️", "🖱️", "🖲️", "🗂️", "🗃️", "🗄️", "🗑️", "🗒️", "🗓️", "🗜️", "🗝️", "🗞️", "🗡️", "🗳️", "🗿", "🚪", "🚬", "🚽", "🚿", "🛁", "🛋️", "🛍️", "🛏️", "🛒", "🛗", "🛠️", "🛡️", "🥁", "🥻", "🥼", "🥽", "🥾", "🥿", "🦯", "🦺", "🧢", "🧣", "🧤", "🧥", "🧦", "🧪", "🧫", "🧬", "🧮", "🧯", "🧰", "🧲", "🧴", "🧷", "🧹", "🧺", "🧻", "🧼", "🧽", "🧾", "🩰", "🩱", "🩲", "🩳", "🩴", "🩸", "🩹", "🩺", "🪃", "🪑", "🪒", "🪓", "🪔", "🪕", "🪖", "🪗", "🪘", "🪙", "🪚", "🪛", "🪜", "🪝", "🪞", "🪟", "🪠", "🪣", "🪤", "🪥", "🪦", "🪧"], symbol: ["#️⃣", "*️⃣", "0️⃣", "1️⃣", "2️⃣", "3️⃣", "4️⃣", "5️⃣", "6️⃣", "7️⃣", "8️⃣", "9️⃣", "©️", "®️", "‼️", "⁉️", "™️", "ℹ️", "↔️", "↕️", "↖️", "↗️", "↘️", "↙️", "↩️", "↪️", "⏏️", "⏩", "⏪", "⏫", "⏬", "⏭️", "⏮️", "⏯️", "⏸️", "⏹️", "⏺️", "Ⓜ️", "▪️", "▫️", "▶️", "◀️", "◻️", "◼️", "◽", "◾", "☑️", "☢️", "☣️", "☦️", "☪️", "☮️", "☯️", "☸️", "♀️", "♂️", "♈", "♉", "♊", "♋", "♌", "♍", "♎", "♏", "♐", "♑", "♒", "♓", "♻️", "♾️", "♿", "⚕️", "⚛️", "⚜️", "⚠️", "⚧️", "⚪", "⚫", "⛎", "⛔", "✅", "✔️", "✖️", "✝️", "✡️", "✳️", "✴️", "❇️", "❌", "❎", "❓", "❔", "❕", "❗", "➕", "➖", "➗", "➡️", "➰", "➿", "⤴️", "⤵️", "⬅️", "⬆️", "⬇️", "⬛", "⬜", "⭕", "〰️", "〽️", "㊗️", "㊙️", "🅰️", "🅱️", "🅾️", "🅿️", "🆎", "🆑", "🆒", "🆓", "🆔", "🆕", "🆖", "🆗", "🆘", "🆙", "🆚", "🈁", "🈂️", "🈚", "🈯", "🈲", "🈳", "🈴", "🈵", "🈶", "🈷️", "🈸", "🈹", "🈺", "🉐", "🉑", "🎦", "🏧", "💠", "💱", "💲", "📛", "📳", "📴", "📵", "📶", "🔀", "🔁", "🔂", "🔃", "🔄", "🔅", "🔆", "🔘", "🔙", "🔚", "🔛", "🔜", "🔝", "🔞", "🔟", "🔠", "🔡", "🔢", "🔣", "🔤", "🔯", "🔰", "🔱", "🔲", "🔳", "🔴", "🔵", "🔶", "🔷", "🔸", "🔹", "🔺", "🔻", "🔼", "🔽", "🕉️", "🕎", "🚫", "🚭", "🚮", "🚯", "🚰", "🚱", "🚳", "🚷", "🚸", "🚹", "🚺", "🚻", "🚼", "🚾", "🛂", "🛃", "🛄", "🛅", "🛐", "🟠", "🟡", "🟢", "🟣", "🟤", "🟥", "🟦", "🟧", "🟨", "🟩", "🟪", "🟫"], flag: ["🇦🇨", "🇦🇩", "🇦🇪", "🇦🇫", "🇦🇬", "🇦🇮", "🇦🇱", "🇦🇲", "🇦🇴", "🇦🇶", "🇦🇷", "🇦🇸", "🇦🇹", "🇦🇺", "🇦🇼", "🇦🇽", "🇦🇿", "🇧🇦", "🇧🇧", "🇧🇩", "🇧🇪", "🇧🇫", "🇧🇬", "🇧🇭", "🇧🇮", "🇧🇯", "🇧🇱", "🇧🇲", "🇧🇳", "🇧🇴", "🇧🇶", "🇧🇷", "🇧🇸", "🇧🇹", "🇧🇻", "🇧🇼", "🇧🇾", "🇧🇿", "🇨🇦", "🇨🇨", "🇨🇩", "🇨🇫", "🇨🇬", "🇨🇭", "🇨🇮", "🇨🇰", "🇨🇱", "🇨🇲", "🇨🇳", "🇨🇴", "🇨🇵", "🇨🇷", "🇨🇺", "🇨🇻", "🇨🇼", "🇨🇽", "🇨🇾", "🇨🇿", "🇩🇪", "🇩🇬", "🇩🇯", "🇩🇰", "🇩🇲", "🇩🇴", "🇩🇿", "🇪🇦", "🇪🇨", "🇪🇪", "🇪🇬", "🇪🇭", "🇪🇷", "🇪🇸", "🇪🇹", "🇪🇺", "🇫🇮", "🇫🇯", "🇫🇰", "🇫🇲", "🇫🇴", "🇫🇷", "🇬🇦", "🇬🇧", "🇬🇩", "🇬🇪", "🇬🇫", "🇬🇬", "🇬🇭", "🇬🇮", "🇬🇱", "🇬🇲", "🇬🇳", "🇬🇵", "🇬🇶", "🇬🇷", "🇬🇸", "🇬🇹", "🇬🇺", "🇬🇼", "🇬🇾", "🇭🇰", "🇭🇲", "🇭🇳", "🇭🇷", "🇭🇹", "🇭🇺", "🇮🇨", "🇮🇩", "🇮🇪", "🇮🇱", "🇮🇲", "🇮🇳", "🇮🇴", "🇮🇶", "🇮🇷", "🇮🇸", "🇮🇹", "🇯🇪", "🇯🇲", "🇯🇴", "🇯🇵", "🇰🇪", "🇰🇬", "🇰🇭", "🇰🇮", "🇰🇲", "🇰🇳", "🇰🇵", "🇰🇷", "🇰🇼", "🇰🇾", "🇰🇿", "🇱🇦", "🇱🇧", "🇱🇨", "🇱🇮", "🇱🇰", "🇱🇷", "🇱🇸", "🇱🇹", "🇱🇺", "🇱🇻", "🇱🇾", "🇲🇦", "🇲🇨", "🇲🇩", "🇲🇪", "🇲🇫", "🇲🇬", "🇲🇭", "🇲🇰", "🇲🇱", "🇲🇲", "🇲🇳", "🇲🇴", "🇲🇵", "🇲🇶", "🇲🇷", "🇲🇸", "🇲🇹", "🇲🇺", "🇲🇻", "🇲🇼", "🇲🇽", "🇲🇾", "🇲🇿", "🇳🇦", "🇳🇨", "🇳🇪", "🇳🇫", "🇳🇬", "🇳🇮", "🇳🇱", "🇳🇴", "🇳🇵", "🇳🇷", "🇳🇺", "🇳🇿", "🇴🇲", "🇵🇦", "🇵🇪", "🇵🇫", "🇵🇬", "🇵🇭", "🇵🇰", "🇵🇱", "🇵🇲", "🇵🇳", "🇵🇷", "🇵🇸", "🇵🇹", "🇵🇼", "🇵🇾", "🇶🇦", "🇷🇪", "🇷🇴", "🇷🇸", "🇷🇺", "🇷🇼", "🇸🇦", "🇸🇧", "🇸🇨", "🇸🇩", "🇸🇪", "🇸🇬", "🇸🇭", "🇸🇮", "🇸🇯", "🇸🇰", "🇸🇱", "🇸🇲", "🇸🇳", "🇸🇴", "🇸🇷", "🇸🇸", "🇸🇹", "🇸🇻", "🇸🇽", "🇸🇾", "🇸🇿", "🇹🇦", "🇹🇨", "🇹🇩", "🇹🇫", "🇹🇬", "🇹🇭", "🇹🇯", "🇹🇰", "🇹🇱", "🇹🇲", "🇹🇳", "🇹🇴", "🇹🇷", "🇹🇹", "🇹🇻", "🇹🇼", "🇹🇿", "🇺🇦", "🇺🇬", "🇺🇲", "🇺🇳", "🇺🇸", "🇺🇾", "🇺🇿", "🇻🇦", "🇻🇨", "🇻🇪", "🇻🇬", "🇻🇮", "🇻🇳", "🇻🇺", "🇼🇫", "🇼🇸", "🇽🇰", "🇾🇪", "🇾🇹", "🇿🇦", "🇿🇲", "🇿🇼", "🎌", "🏁", "🏳️", "🏳️⚧️", "🏳️🌈", "🏴", "🏴☠️", "🚩"] };
|
|
15500
|
-
var
|
|
15501
|
-
var
|
|
15502
|
-
var
|
|
15503
|
-
var
|
|
15504
|
-
var pr = [{ alpha2: "AD", alpha3: "AND", numeric: "020" }, { alpha2: "AE", alpha3: "ARE", numeric: "784" }, { alpha2: "AF", alpha3: "AFG", numeric: "004" }, { alpha2: "AG", alpha3: "ATG", numeric: "028" }, { alpha2: "AI", alpha3: "AIA", numeric: "660" }, { alpha2: "AL", alpha3: "ALB", numeric: "008" }, { alpha2: "AM", alpha3: "ARM", numeric: "051" }, { alpha2: "AO", alpha3: "AGO", numeric: "024" }, { alpha2: "AQ", alpha3: "ATA", numeric: "010" }, { alpha2: "AR", alpha3: "ARG", numeric: "032" }, { alpha2: "AS", alpha3: "ASM", numeric: "016" }, { alpha2: "AT", alpha3: "AUT", numeric: "040" }, { alpha2: "AU", alpha3: "AUS", numeric: "036" }, { alpha2: "AW", alpha3: "ABW", numeric: "533" }, { alpha2: "AX", alpha3: "ALA", numeric: "248" }, { alpha2: "AZ", alpha3: "AZE", numeric: "031" }, { alpha2: "BA", alpha3: "BIH", numeric: "070" }, { alpha2: "BB", alpha3: "BRB", numeric: "052" }, { alpha2: "BD", alpha3: "BGD", numeric: "050" }, { alpha2: "BE", alpha3: "BEL", numeric: "056" }, { alpha2: "BF", alpha3: "BFA", numeric: "854" }, { alpha2: "BG", alpha3: "BGR", numeric: "100" }, { alpha2: "BH", alpha3: "BHR", numeric: "048" }, { alpha2: "BI", alpha3: "BDI", numeric: "108" }, { alpha2: "BJ", alpha3: "BEN", numeric: "204" }, { alpha2: "BL", alpha3: "BLM", numeric: "652" }, { alpha2: "BM", alpha3: "BMU", numeric: "060" }, { alpha2: "BN", alpha3: "BRN", numeric: "096" }, { alpha2: "BO", alpha3: "BOL", numeric: "068" }, { alpha2: "BQ", alpha3: "BES", numeric: "535" }, { alpha2: "BR", alpha3: "BRA", numeric: "076" }, { alpha2: "BS", alpha3: "BHS", numeric: "044" }, { alpha2: "BT", alpha3: "BTN", numeric: "064" }, { alpha2: "BV", alpha3: "BVT", numeric: "074" }, { alpha2: "BW", alpha3: "BWA", numeric: "072" }, { alpha2: "BY", alpha3: "BLR", numeric: "112" }, { alpha2: "BZ", alpha3: "BLZ", numeric: "084" }, { alpha2: "CA", alpha3: "CAN", numeric: "124" }, { alpha2: "CC", alpha3: "CCK", numeric: "166" }, { alpha2: "CD", alpha3: "COD", numeric: "180" }, { alpha2: "CF", alpha3: "CAF", numeric: "140" }, { alpha2: "CG", alpha3: "COG", numeric: "178" }, { alpha2: "CH", alpha3: "CHE", numeric: "756" }, { alpha2: "CI", alpha3: "CIV", numeric: "384" }, { alpha2: "CK", alpha3: "COK", numeric: "184" }, { alpha2: "CL", alpha3: "CHL", numeric: "152" }, { alpha2: "CM", alpha3: "CMR", numeric: "120" }, { alpha2: "CN", alpha3: "CHN", numeric: "156" }, { alpha2: "CO", alpha3: "COL", numeric: "170" }, { alpha2: "CR", alpha3: "CRI", numeric: "188" }, { alpha2: "CU", alpha3: "CUB", numeric: "192" }, { alpha2: "CV", alpha3: "CPV", numeric: "132" }, { alpha2: "CW", alpha3: "CUW", numeric: "531" }, { alpha2: "CX", alpha3: "CXR", numeric: "162" }, { alpha2: "CY", alpha3: "CYP", numeric: "196" }, { alpha2: "CZ", alpha3: "CZE", numeric: "203" }, { alpha2: "DE", alpha3: "DEU", numeric: "276" }, { alpha2: "DJ", alpha3: "DJI", numeric: "262" }, { alpha2: "DK", alpha3: "DNK", numeric: "208" }, { alpha2: "DM", alpha3: "DMA", numeric: "212" }, { alpha2: "DO", alpha3: "DOM", numeric: "214" }, { alpha2: "DZ", alpha3: "DZA", numeric: "012" }, { alpha2: "EC", alpha3: "ECU", numeric: "218" }, { alpha2: "EE", alpha3: "EST", numeric: "233" }, { alpha2: "EG", alpha3: "EGY", numeric: "818" }, { alpha2: "EH", alpha3: "ESH", numeric: "732" }, { alpha2: "ER", alpha3: "ERI", numeric: "232" }, { alpha2: "ES", alpha3: "ESP", numeric: "724" }, { alpha2: "ET", alpha3: "ETH", numeric: "231" }, { alpha2: "FI", alpha3: "FIN", numeric: "246" }, { alpha2: "FJ", alpha3: "FJI", numeric: "242" }, { alpha2: "FK", alpha3: "FLK", numeric: "238" }, { alpha2: "FM", alpha3: "FSM", numeric: "583" }, { alpha2: "FO", alpha3: "FRO", numeric: "234" }, { alpha2: "FR", alpha3: "FRA", numeric: "250" }, { alpha2: "GA", alpha3: "GAB", numeric: "266" }, { alpha2: "GB", alpha3: "GBR", numeric: "826" }, { alpha2: "GD", alpha3: "GRD", numeric: "308" }, { alpha2: "GE", alpha3: "GEO", numeric: "268" }, { alpha2: "GF", alpha3: "GUF", numeric: "254" }, { alpha2: "GG", alpha3: "GGY", numeric: "831" }, { alpha2: "GH", alpha3: "GHA", numeric: "288" }, { alpha2: "GI", alpha3: "GIB", numeric: "292" }, { alpha2: "GL", alpha3: "GRL", numeric: "304" }, { alpha2: "GM", alpha3: "GMB", numeric: "270" }, { alpha2: "GN", alpha3: "GIN", numeric: "324" }, { alpha2: "GP", alpha3: "GLP", numeric: "312" }, { alpha2: "GQ", alpha3: "GNQ", numeric: "226" }, { alpha2: "GR", alpha3: "GRC", numeric: "300" }, { alpha2: "GS", alpha3: "SGS", numeric: "239" }, { alpha2: "GT", alpha3: "GTM", numeric: "320" }, { alpha2: "GU", alpha3: "GUM", numeric: "316" }, { alpha2: "GW", alpha3: "GNB", numeric: "624" }, { alpha2: "GY", alpha3: "GUY", numeric: "328" }, { alpha2: "HK", alpha3: "HKG", numeric: "344" }, { alpha2: "HM", alpha3: "HMD", numeric: "334" }, { alpha2: "HN", alpha3: "HND", numeric: "340" }, { alpha2: "HR", alpha3: "HRV", numeric: "191" }, { alpha2: "HT", alpha3: "HTI", numeric: "332" }, { alpha2: "HU", alpha3: "HUN", numeric: "348" }, { alpha2: "ID", alpha3: "IDN", numeric: "360" }, { alpha2: "IE", alpha3: "IRL", numeric: "372" }, { alpha2: "IL", alpha3: "ISR", numeric: "376" }, { alpha2: "IM", alpha3: "IMN", numeric: "833" }, { alpha2: "IN", alpha3: "IND", numeric: "356" }, { alpha2: "IO", alpha3: "IOT", numeric: "086" }, { alpha2: "IQ", alpha3: "IRQ", numeric: "368" }, { alpha2: "IR", alpha3: "IRN", numeric: "364" }, { alpha2: "IS", alpha3: "ISL", numeric: "352" }, { alpha2: "IT", alpha3: "ITA", numeric: "380" }, { alpha2: "JE", alpha3: "JEY", numeric: "832" }, { alpha2: "JM", alpha3: "JAM", numeric: "388" }, { alpha2: "JO", alpha3: "JOR", numeric: "400" }, { alpha2: "JP", alpha3: "JPN", numeric: "392" }, { alpha2: "KE", alpha3: "KEN", numeric: "404" }, { alpha2: "KG", alpha3: "KGZ", numeric: "417" }, { alpha2: "KH", alpha3: "KHM", numeric: "116" }, { alpha2: "KI", alpha3: "KIR", numeric: "296" }, { alpha2: "KM", alpha3: "COM", numeric: "174" }, { alpha2: "KN", alpha3: "KNA", numeric: "659" }, { alpha2: "KP", alpha3: "PRK", numeric: "408" }, { alpha2: "KR", alpha3: "KOR", numeric: "410" }, { alpha2: "KW", alpha3: "KWT", numeric: "414" }, { alpha2: "KY", alpha3: "CYM", numeric: "136" }, { alpha2: "KZ", alpha3: "KAZ", numeric: "398" }, { alpha2: "LA", alpha3: "LAO", numeric: "418" }, { alpha2: "LB", alpha3: "LBN", numeric: "422" }, { alpha2: "LC", alpha3: "LCA", numeric: "662" }, { alpha2: "LI", alpha3: "LIE", numeric: "438" }, { alpha2: "LK", alpha3: "LKA", numeric: "144" }, { alpha2: "LR", alpha3: "LBR", numeric: "430" }, { alpha2: "LS", alpha3: "LSO", numeric: "426" }, { alpha2: "LT", alpha3: "LTU", numeric: "440" }, { alpha2: "LU", alpha3: "LUX", numeric: "442" }, { alpha2: "LV", alpha3: "LVA", numeric: "428" }, { alpha2: "LY", alpha3: "LBY", numeric: "434" }, { alpha2: "MA", alpha3: "MAR", numeric: "504" }, { alpha2: "MC", alpha3: "MCO", numeric: "492" }, { alpha2: "MD", alpha3: "MDA", numeric: "498" }, { alpha2: "ME", alpha3: "MNE", numeric: "499" }, { alpha2: "MF", alpha3: "MAF", numeric: "663" }, { alpha2: "MG", alpha3: "MDG", numeric: "450" }, { alpha2: "MH", alpha3: "MHL", numeric: "584" }, { alpha2: "MK", alpha3: "MKD", numeric: "807" }, { alpha2: "ML", alpha3: "MLI", numeric: "466" }, { alpha2: "MM", alpha3: "MMR", numeric: "104" }, { alpha2: "MN", alpha3: "MNG", numeric: "496" }, { alpha2: "MO", alpha3: "MAC", numeric: "446" }, { alpha2: "MP", alpha3: "MNP", numeric: "580" }, { alpha2: "MQ", alpha3: "MTQ", numeric: "474" }, { alpha2: "MR", alpha3: "MRT", numeric: "478" }, { alpha2: "MS", alpha3: "MSR", numeric: "500" }, { alpha2: "MT", alpha3: "MLT", numeric: "470" }, { alpha2: "MU", alpha3: "MUS", numeric: "480" }, { alpha2: "MV", alpha3: "MDV", numeric: "462" }, { alpha2: "MW", alpha3: "MWI", numeric: "454" }, { alpha2: "MX", alpha3: "MEX", numeric: "484" }, { alpha2: "MY", alpha3: "MYS", numeric: "458" }, { alpha2: "MZ", alpha3: "MOZ", numeric: "508" }, { alpha2: "NA", alpha3: "NAM", numeric: "516" }, { alpha2: "NC", alpha3: "NCL", numeric: "540" }, { alpha2: "NE", alpha3: "NER", numeric: "562" }, { alpha2: "NF", alpha3: "NFK", numeric: "574" }, { alpha2: "NG", alpha3: "NGA", numeric: "566" }, { alpha2: "NI", alpha3: "NIC", numeric: "558" }, { alpha2: "NL", alpha3: "NLD", numeric: "528" }, { alpha2: "NO", alpha3: "NOR", numeric: "578" }, { alpha2: "NP", alpha3: "NPL", numeric: "524" }, { alpha2: "NR", alpha3: "NRU", numeric: "520" }, { alpha2: "NU", alpha3: "NIU", numeric: "570" }, { alpha2: "NZ", alpha3: "NZL", numeric: "554" }, { alpha2: "OM", alpha3: "OMN", numeric: "512" }, { alpha2: "PA", alpha3: "PAN", numeric: "591" }, { alpha2: "PE", alpha3: "PER", numeric: "604" }, { alpha2: "PF", alpha3: "PYF", numeric: "258" }, { alpha2: "PG", alpha3: "PNG", numeric: "598" }, { alpha2: "PH", alpha3: "PHL", numeric: "608" }, { alpha2: "PK", alpha3: "PAK", numeric: "586" }, { alpha2: "PL", alpha3: "POL", numeric: "616" }, { alpha2: "PM", alpha3: "SPM", numeric: "666" }, { alpha2: "PN", alpha3: "PCN", numeric: "612" }, { alpha2: "PR", alpha3: "PRI", numeric: "630" }, { alpha2: "PS", alpha3: "PSE", numeric: "275" }, { alpha2: "PT", alpha3: "PRT", numeric: "620" }, { alpha2: "PW", alpha3: "PLW", numeric: "585" }, { alpha2: "PY", alpha3: "PRY", numeric: "600" }, { alpha2: "QA", alpha3: "QAT", numeric: "634" }, { alpha2: "RE", alpha3: "REU", numeric: "638" }, { alpha2: "RO", alpha3: "ROU", numeric: "642" }, { alpha2: "RS", alpha3: "SRB", numeric: "688" }, { alpha2: "RU", alpha3: "RUS", numeric: "643" }, { alpha2: "RW", alpha3: "RWA", numeric: "646" }, { alpha2: "SA", alpha3: "SAU", numeric: "682" }, { alpha2: "SB", alpha3: "SLB", numeric: "090" }, { alpha2: "SC", alpha3: "SYC", numeric: "690" }, { alpha2: "SD", alpha3: "SDN", numeric: "729" }, { alpha2: "SE", alpha3: "SWE", numeric: "752" }, { alpha2: "SG", alpha3: "SGP", numeric: "702" }, { alpha2: "SH", alpha3: "SHN", numeric: "654" }, { alpha2: "SI", alpha3: "SVN", numeric: "705" }, { alpha2: "SJ", alpha3: "SJM", numeric: "744" }, { alpha2: "SK", alpha3: "SVK", numeric: "703" }, { alpha2: "SL", alpha3: "SLE", numeric: "694" }, { alpha2: "SM", alpha3: "SMR", numeric: "674" }, { alpha2: "SN", alpha3: "SEN", numeric: "686" }, { alpha2: "SO", alpha3: "SOM", numeric: "706" }, { alpha2: "SR", alpha3: "SUR", numeric: "740" }, { alpha2: "SS", alpha3: "SSD", numeric: "728" }, { alpha2: "ST", alpha3: "STP", numeric: "678" }, { alpha2: "SV", alpha3: "SLV", numeric: "222" }, { alpha2: "SX", alpha3: "SXM", numeric: "534" }, { alpha2: "SY", alpha3: "SYR", numeric: "760" }, { alpha2: "SZ", alpha3: "SWZ", numeric: "748" }, { alpha2: "TC", alpha3: "TCA", numeric: "796" }, { alpha2: "TD", alpha3: "TCD", numeric: "148" }, { alpha2: "TF", alpha3: "ATF", numeric: "260" }, { alpha2: "TG", alpha3: "TGO", numeric: "768" }, { alpha2: "TH", alpha3: "THA", numeric: "764" }, { alpha2: "TJ", alpha3: "TJK", numeric: "762" }, { alpha2: "TK", alpha3: "TKL", numeric: "772" }, { alpha2: "TL", alpha3: "TLS", numeric: "626" }, { alpha2: "TM", alpha3: "TKM", numeric: "795" }, { alpha2: "TN", alpha3: "TUN", numeric: "788" }, { alpha2: "TO", alpha3: "TON", numeric: "776" }, { alpha2: "TR", alpha3: "TUR", numeric: "792" }, { alpha2: "TT", alpha3: "TTO", numeric: "780" }, { alpha2: "TV", alpha3: "TUV", numeric: "798" }, { alpha2: "TW", alpha3: "TWN", numeric: "158" }, { alpha2: "TZ", alpha3: "TZA", numeric: "834" }, { alpha2: "UA", alpha3: "UKR", numeric: "804" }, { alpha2: "UG", alpha3: "UGA", numeric: "800" }, { alpha2: "UM", alpha3: "UMI", numeric: "581" }, { alpha2: "US", alpha3: "USA", numeric: "840" }, { alpha2: "UY", alpha3: "URY", numeric: "858" }, { alpha2: "UZ", alpha3: "UZB", numeric: "860" }, { alpha2: "VA", alpha3: "VAT", numeric: "336" }, { alpha2: "VC", alpha3: "VCT", numeric: "670" }, { alpha2: "VE", alpha3: "VEN", numeric: "862" }, { alpha2: "VG", alpha3: "VGB", numeric: "092" }, { alpha2: "VI", alpha3: "VIR", numeric: "850" }, { alpha2: "VN", alpha3: "VNM", numeric: "704" }, { alpha2: "VU", alpha3: "VUT", numeric: "548" }, { alpha2: "WF", alpha3: "WLF", numeric: "876" }, { alpha2: "WS", alpha3: "WSM", numeric: "882" }, { alpha2: "YE", alpha3: "YEM", numeric: "887" }, { alpha2: "YT", alpha3: "MYT", numeric: "175" }, { alpha2: "ZA", alpha3: "ZAF", numeric: "710" }, { alpha2: "ZM", alpha3: "ZMB", numeric: "894" }, { alpha2: "ZW", alpha3: "ZWE", numeric: "716" }];
|
|
15505
|
-
var
|
|
15506
|
-
var
|
|
15507
|
-
var
|
|
15508
|
-
var
|
|
15509
|
-
var
|
|
15510
|
-
var
|
|
15511
|
-
var f = new
|
|
15516
|
+
var qe = ["Academy Color Encoding System (ACES)", "Adobe RGB", "Adobe Wide Gamut RGB", "British Standard Colour (BS)", "CIE 1931 XYZ", "CIELAB", "CIELUV", "CIEUVW", "CMY", "CMYK", "DCI-P3", "Display-P3", "Federal Standard 595C", "HKS", "HSL", "HSLA", "HSLuv", "HSV", "HWB", "LCh", "LMS", "Munsell Color System", "Natural Color System (NSC)", "Pantone Matching System (PMS)", "ProPhoto RGB Color Space", "RAL", "RG", "RGBA", "RGK", "Rec. 2020", "Rec. 2100", "Rec. 601", "Rec. 709", "Uniform Color Spaces (UCSs)", "YDbDr", "YIQ", "YPbPr", "sRGB", "sYCC", "scRGB", "xvYCC"];
|
|
15517
|
+
var qr = { space: qe }, er = qr;
|
|
15518
|
+
var rr = ["ascii_bin", "ascii_general_ci", "cp1250_bin", "cp1250_general_ci", "utf8_bin", "utf8_general_ci", "utf8_unicode_ci"];
|
|
15519
|
+
var tr = ["ARCHIVE", "BLACKHOLE", "CSV", "InnoDB", "MEMORY", "MyISAM"];
|
|
15520
|
+
var ar = ["bigint", "binary", "bit", "blob", "boolean", "date", "datetime", "decimal", "double", "enum", "float", "geometry", "int", "mediumint", "point", "real", "serial", "set", "smallint", "text", "time", "timestamp", "tinyint", "varchar"];
|
|
15521
|
+
var et$1 = { collation: rr, engine: tr, type: ar }, nr = et$1;
|
|
15522
|
+
var _ = ["Africa/Abidjan", "Africa/Accra", "Africa/Addis_Ababa", "Africa/Algiers", "Africa/Asmara", "Africa/Bamako", "Africa/Bangui", "Africa/Banjul", "Africa/Bissau", "Africa/Blantyre", "Africa/Brazzaville", "Africa/Bujumbura", "Africa/Cairo", "Africa/Casablanca", "Africa/Ceuta", "Africa/Conakry", "Africa/Dakar", "Africa/Dar_es_Salaam", "Africa/Djibouti", "Africa/Douala", "Africa/El_Aaiun", "Africa/Freetown", "Africa/Gaborone", "Africa/Harare", "Africa/Johannesburg", "Africa/Juba", "Africa/Kampala", "Africa/Khartoum", "Africa/Kigali", "Africa/Kinshasa", "Africa/Lagos", "Africa/Libreville", "Africa/Lome", "Africa/Luanda", "Africa/Lubumbashi", "Africa/Lusaka", "Africa/Malabo", "Africa/Maputo", "Africa/Maseru", "Africa/Mbabane", "Africa/Mogadishu", "Africa/Monrovia", "Africa/Nairobi", "Africa/Ndjamena", "Africa/Niamey", "Africa/Nouakchott", "Africa/Ouagadougou", "Africa/Porto-Novo", "Africa/Sao_Tome", "Africa/Tripoli", "Africa/Tunis", "Africa/Windhoek", "America/Adak", "America/Anchorage", "America/Anguilla", "America/Antigua", "America/Araguaina", "America/Argentina/Buenos_Aires", "America/Argentina/Catamarca", "America/Argentina/Cordoba", "America/Argentina/Jujuy", "America/Argentina/La_Rioja", "America/Argentina/Mendoza", "America/Argentina/Rio_Gallegos", "America/Argentina/Salta", "America/Argentina/San_Juan", "America/Argentina/San_Luis", "America/Argentina/Tucuman", "America/Argentina/Ushuaia", "America/Aruba", "America/Asuncion", "America/Atikokan", "America/Bahia", "America/Bahia_Banderas", "America/Barbados", "America/Belem", "America/Belize", "America/Blanc-Sablon", "America/Boa_Vista", "America/Bogota", "America/Boise", "America/Cambridge_Bay", "America/Campo_Grande", "America/Cancun", "America/Caracas", "America/Cayenne", "America/Cayman", "America/Chicago", "America/Chihuahua", "America/Ciudad_Juarez", "America/Costa_Rica", "America/Creston", "America/Cuiaba", "America/Curacao", "America/Danmarkshavn", "America/Dawson", "America/Dawson_Creek", "America/Denver", "America/Detroit", "America/Dominica", "America/Edmonton", "America/Eirunepe", "America/El_Salvador", "America/Fort_Nelson", "America/Fortaleza", "America/Glace_Bay", "America/Goose_Bay", "America/Grand_Turk", "America/Grenada", "America/Guadeloupe", "America/Guatemala", "America/Guayaquil", "America/Guyana", "America/Halifax", "America/Havana", "America/Hermosillo", "America/Indiana/Indianapolis", "America/Indiana/Knox", "America/Indiana/Marengo", "America/Indiana/Petersburg", "America/Indiana/Tell_City", "America/Indiana/Vevay", "America/Indiana/Vincennes", "America/Indiana/Winamac", "America/Inuvik", "America/Iqaluit", "America/Jamaica", "America/Juneau", "America/Kentucky/Louisville", "America/Kentucky/Monticello", "America/Kralendijk", "America/La_Paz", "America/Lima", "America/Los_Angeles", "America/Lower_Princes", "America/Maceio", "America/Managua", "America/Manaus", "America/Marigot", "America/Martinique", "America/Matamoros", "America/Mazatlan", "America/Menominee", "America/Merida", "America/Metlakatla", "America/Mexico_City", "America/Miquelon", "America/Moncton", "America/Monterrey", "America/Montevideo", "America/Montserrat", "America/Nassau", "America/New_York", "America/Nome", "America/Noronha", "America/North_Dakota/Beulah", "America/North_Dakota/Center", "America/North_Dakota/New_Salem", "America/Nuuk", "America/Ojinaga", "America/Panama", "America/Paramaribo", "America/Phoenix", "America/Port-au-Prince", "America/Port_of_Spain", "America/Porto_Velho", "America/Puerto_Rico", "America/Punta_Arenas", "America/Rankin_Inlet", "America/Recife", "America/Regina", "America/Resolute", "America/Rio_Branco", "America/Santarem", "America/Santiago", "America/Santo_Domingo", "America/Sao_Paulo", "America/Scoresbysund", "America/Sitka", "America/St_Barthelemy", "America/St_Johns", "America/St_Kitts", "America/St_Lucia", "America/St_Thomas", "America/St_Vincent", "America/Swift_Current", "America/Tegucigalpa", "America/Thule", "America/Tijuana", "America/Toronto", "America/Tortola", "America/Vancouver", "America/Whitehorse", "America/Winnipeg", "America/Yakutat", "America/Yellowknife", "Antarctica/Casey", "Antarctica/Davis", "Antarctica/DumontDUrville", "Antarctica/Macquarie", "Antarctica/Mawson", "Antarctica/McMurdo", "Antarctica/Palmer", "Antarctica/Rothera", "Antarctica/Syowa", "Antarctica/Troll", "Antarctica/Vostok", "Arctic/Longyearbyen", "Asia/Aden", "Asia/Almaty", "Asia/Amman", "Asia/Anadyr", "Asia/Aqtau", "Asia/Aqtobe", "Asia/Ashgabat", "Asia/Atyrau", "Asia/Baghdad", "Asia/Bahrain", "Asia/Baku", "Asia/Bangkok", "Asia/Barnaul", "Asia/Beirut", "Asia/Bishkek", "Asia/Brunei", "Asia/Chita", "Asia/Choibalsan", "Asia/Colombo", "Asia/Damascus", "Asia/Dhaka", "Asia/Dili", "Asia/Dubai", "Asia/Dushanbe", "Asia/Famagusta", "Asia/Gaza", "Asia/Hebron", "Asia/Ho_Chi_Minh", "Asia/Hong_Kong", "Asia/Hovd", "Asia/Irkutsk", "Asia/Jakarta", "Asia/Jayapura", "Asia/Jerusalem", "Asia/Kabul", "Asia/Kamchatka", "Asia/Karachi", "Asia/Kathmandu", "Asia/Khandyga", "Asia/Kolkata", "Asia/Krasnoyarsk", "Asia/Kuala_Lumpur", "Asia/Kuching", "Asia/Kuwait", "Asia/Macau", "Asia/Magadan", "Asia/Makassar", "Asia/Manila", "Asia/Muscat", "Asia/Nicosia", "Asia/Novokuznetsk", "Asia/Novosibirsk", "Asia/Omsk", "Asia/Oral", "Asia/Phnom_Penh", "Asia/Pontianak", "Asia/Pyongyang", "Asia/Qatar", "Asia/Qostanay", "Asia/Qyzylorda", "Asia/Riyadh", "Asia/Sakhalin", "Asia/Samarkand", "Asia/Seoul", "Asia/Shanghai", "Asia/Singapore", "Asia/Srednekolymsk", "Asia/Taipei", "Asia/Tashkent", "Asia/Tbilisi", "Asia/Tehran", "Asia/Thimphu", "Asia/Tokyo", "Asia/Tomsk", "Asia/Ulaanbaatar", "Asia/Urumqi", "Asia/Ust-Nera", "Asia/Vientiane", "Asia/Vladivostok", "Asia/Yakutsk", "Asia/Yangon", "Asia/Yekaterinburg", "Asia/Yerevan", "Atlantic/Azores", "Atlantic/Bermuda", "Atlantic/Canary", "Atlantic/Cape_Verde", "Atlantic/Faroe", "Atlantic/Madeira", "Atlantic/Reykjavik", "Atlantic/South_Georgia", "Atlantic/St_Helena", "Atlantic/Stanley", "Australia/Adelaide", "Australia/Brisbane", "Australia/Broken_Hill", "Australia/Darwin", "Australia/Eucla", "Australia/Hobart", "Australia/Lindeman", "Australia/Lord_Howe", "Australia/Melbourne", "Australia/Perth", "Australia/Sydney", "Europe/Amsterdam", "Europe/Andorra", "Europe/Astrakhan", "Europe/Athens", "Europe/Belgrade", "Europe/Berlin", "Europe/Bratislava", "Europe/Brussels", "Europe/Bucharest", "Europe/Budapest", "Europe/Busingen", "Europe/Chisinau", "Europe/Copenhagen", "Europe/Dublin", "Europe/Gibraltar", "Europe/Guernsey", "Europe/Helsinki", "Europe/Isle_of_Man", "Europe/Istanbul", "Europe/Jersey", "Europe/Kaliningrad", "Europe/Kirov", "Europe/Kyiv", "Europe/Lisbon", "Europe/Ljubljana", "Europe/London", "Europe/Luxembourg", "Europe/Madrid", "Europe/Malta", "Europe/Mariehamn", "Europe/Minsk", "Europe/Monaco", "Europe/Moscow", "Europe/Oslo", "Europe/Paris", "Europe/Podgorica", "Europe/Prague", "Europe/Riga", "Europe/Rome", "Europe/Samara", "Europe/San_Marino", "Europe/Sarajevo", "Europe/Saratov", "Europe/Simferopol", "Europe/Skopje", "Europe/Sofia", "Europe/Stockholm", "Europe/Tallinn", "Europe/Tirane", "Europe/Ulyanovsk", "Europe/Vaduz", "Europe/Vatican", "Europe/Vienna", "Europe/Vilnius", "Europe/Volgograd", "Europe/Warsaw", "Europe/Zagreb", "Europe/Zurich", "Indian/Antananarivo", "Indian/Chagos", "Indian/Christmas", "Indian/Cocos", "Indian/Comoro", "Indian/Kerguelen", "Indian/Mahe", "Indian/Maldives", "Indian/Mauritius", "Indian/Mayotte", "Indian/Reunion", "Pacific/Apia", "Pacific/Auckland", "Pacific/Bougainville", "Pacific/Chatham", "Pacific/Chuuk", "Pacific/Easter", "Pacific/Efate", "Pacific/Fakaofo", "Pacific/Fiji", "Pacific/Funafuti", "Pacific/Galapagos", "Pacific/Gambier", "Pacific/Guadalcanal", "Pacific/Guam", "Pacific/Honolulu", "Pacific/Kanton", "Pacific/Kiritimati", "Pacific/Kosrae", "Pacific/Kwajalein", "Pacific/Majuro", "Pacific/Marquesas", "Pacific/Midway", "Pacific/Nauru", "Pacific/Niue", "Pacific/Norfolk", "Pacific/Noumea", "Pacific/Pago_Pago", "Pacific/Palau", "Pacific/Pitcairn", "Pacific/Pohnpei", "Pacific/Port_Moresby", "Pacific/Rarotonga", "Pacific/Saipan", "Pacific/Tahiti", "Pacific/Tarawa", "Pacific/Tongatapu", "Pacific/Wake", "Pacific/Wallis"];
|
|
15523
|
+
var rt = { time_zone: _ }, ir = rt;
|
|
15524
|
+
var or = ["ADP", "AGP", "AI", "API", "ASCII", "CLI", "COM", "CSS", "DNS", "DRAM", "EXE", "FTP", "GB", "HDD", "HEX", "HTTP", "IB", "IP", "JBOD", "JSON", "OCR", "PCI", "PNG", "RAM", "RSS", "SAS", "SCSI", "SDD", "SMS", "SMTP", "SQL", "SSD", "SSL", "TCP", "THX", "TLS", "UDP", "USB", "UTF8", "VGA", "XML", "XSS"];
|
|
15525
|
+
var tt = { abbreviation: or }, sr = tt;
|
|
15526
|
+
var cr = { smiley: ["☠️", "☹️", "☺️", "❣️", "❤️", "❤️🔥", "❤️🩹", "👁️🗨️", "👹", "👺", "👻", "👽", "👾", "👿", "💀", "💋", "💌", "💓", "💔", "💕", "💖", "💗", "💘", "💙", "💚", "💛", "💜", "💝", "💞", "💟", "💢", "💣", "💤", "💥", "💦", "💨", "💩", "💫", "💬", "💭", "💯", "🕳️", "🖤", "🗨️", "🗯️", "😀", "😁", "😂", "😃", "😄", "😅", "😆", "😇", "😈", "😉", "😊", "😋", "😌", "😍", "😎", "😏", "😐", "😑", "😒", "😓", "😔", "😕", "😖", "😗", "😘", "😙", "😚", "😛", "😜", "😝", "😞", "😟", "😠", "😡", "😢", "😣", "😤", "😥", "😦", "😧", "😨", "😩", "😪", "😫", "😬", "😭", "😮", "😮💨", "😯", "😰", "😱", "😲", "😳", "😴", "😵", "😵💫", "😶", "😶🌫️", "😷", "😸", "😹", "😺", "😻", "😼", "😽", "😾", "😿", "🙀", "🙁", "🙂", "🙃", "🙄", "🙈", "🙉", "🙊", "🤍", "🤎", "🤐", "🤑", "🤒", "🤓", "🤔", "🤕", "🤖", "🤗", "🤠", "🤡", "🤢", "🤣", "🤤", "🤥", "🤧", "🤨", "🤩", "🤪", "🤫", "🤬", "🤭", "🤮", "🤯", "🥰", "🥱", "🥲", "🥳", "🥴", "🥵", "🥶", "🥸", "🥺", "🧐", "🧡"], body: ["☝🏻", "☝🏼", "☝🏽", "☝🏾", "☝🏿", "☝️", "✊", "✊🏻", "✊🏼", "✊🏽", "✊🏾", "✊🏿", "✋", "✋🏻", "✋🏼", "✋🏽", "✋🏾", "✋🏿", "✌🏻", "✌🏼", "✌🏽", "✌🏾", "✌🏿", "✌️", "✍🏻", "✍🏼", "✍🏽", "✍🏾", "✍🏿", "✍️", "👀", "👁️", "👂", "👂🏻", "👂🏼", "👂🏽", "👂🏾", "👂🏿", "👃", "👃🏻", "👃🏼", "👃🏽", "👃🏾", "👃🏿", "👄", "👅", "👆", "👆🏻", "👆🏼", "👆🏽", "👆🏾", "👆🏿", "👇", "👇🏻", "👇🏼", "👇🏽", "👇🏾", "👇🏿", "👈", "👈🏻", "👈🏼", "👈🏽", "👈🏾", "👈🏿", "👉", "👉🏻", "👉🏼", "👉🏽", "👉🏾", "👉🏿", "👊", "👊🏻", "👊🏼", "👊🏽", "👊🏾", "👊🏿", "👋", "👋🏻", "👋🏼", "👋🏽", "👋🏾", "👋🏿", "👌", "👌🏻", "👌🏼", "👌🏽", "👌🏾", "👌🏿", "👍", "👍🏻", "👍🏼", "👍🏽", "👍🏾", "👍🏿", "👎", "👎🏻", "👎🏼", "👎🏽", "👎🏾", "👎🏿", "👏", "👏🏻", "👏🏼", "👏🏽", "👏🏾", "👏🏿", "👐", "👐🏻", "👐🏼", "👐🏽", "👐🏾", "👐🏿", "💅", "💅🏻", "💅🏼", "💅🏽", "💅🏾", "💅🏿", "💪", "💪🏻", "💪🏼", "💪🏽", "💪🏾", "💪🏿", "🖐🏻", "🖐🏼", "🖐🏽", "🖐🏾", "🖐🏿", "🖐️", "🖕", "🖕🏻", "🖕🏼", "🖕🏽", "🖕🏾", "🖕🏿", "🖖", "🖖🏻", "🖖🏼", "🖖🏽", "🖖🏾", "🖖🏿", "🙌", "🙌🏻", "🙌🏼", "🙌🏽", "🙌🏾", "🙌🏿", "🙏", "🙏🏻", "🙏🏼", "🙏🏽", "🙏🏾", "🙏🏿", "🤌", "🤌🏻", "🤌🏼", "🤌🏽", "🤌🏾", "🤌🏿", "🤏", "🤏🏻", "🤏🏼", "🤏🏽", "🤏🏾", "🤏🏿", "🤘", "🤘🏻", "🤘🏼", "🤘🏽", "🤘🏾", "🤘🏿", "🤙", "🤙🏻", "🤙🏼", "🤙🏽", "🤙🏾", "🤙🏿", "🤚", "🤚🏻", "🤚🏼", "🤚🏽", "🤚🏾", "🤚🏿", "🤛", "🤛🏻", "🤛🏼", "🤛🏽", "🤛🏾", "🤛🏿", "🤜", "🤜🏻", "🤜🏼", "🤜🏽", "🤜🏾", "🤜🏿", "🤝", "🤞", "🤞🏻", "🤞🏼", "🤞🏽", "🤞🏾", "🤞🏿", "🤟", "🤟🏻", "🤟🏼", "🤟🏽", "🤟🏾", "🤟🏿", "🤲", "🤲🏻", "🤲🏼", "🤲🏽", "🤲🏾", "🤲🏿", "🤳", "🤳🏻", "🤳🏼", "🤳🏽", "🤳🏾", "🤳🏿", "🦴", "🦵", "🦵🏻", "🦵🏼", "🦵🏽", "🦵🏾", "🦵🏿", "🦶", "🦶🏻", "🦶🏼", "🦶🏽", "🦶🏾", "🦶🏿", "🦷", "🦻", "🦻🏻", "🦻🏼", "🦻🏽", "🦻🏾", "🦻🏿", "🦾", "🦿", "🧠", "🫀", "🫁"], person: ["🎅", "🎅🏻", "🎅🏼", "🎅🏽", "🎅🏾", "🎅🏿", "👦", "👦🏻", "👦🏼", "👦🏽", "👦🏾", "👦🏿", "👧", "👧🏻", "👧🏼", "👧🏽", "👧🏾", "👧🏿", "👨", "👨⚕️", "👨⚖️", "👨✈️", "👨🌾", "👨🍳", "👨🍼", "👨🎓", "👨🎤", "👨🎨", "👨🏫", "👨🏭", "👨💻", "👨💼", "👨🔧", "👨🔬", "👨🚀", "👨🚒", "👨🦰", "👨🦱", "👨🦲", "👨🦳", "👨🏻", "👨🏻⚕️", "👨🏻⚖️", "👨🏻✈️", "👨🏻🌾", "👨🏻🍳", "👨🏻🍼", "👨🏻🎓", "👨🏻🎤", "👨🏻🎨", "👨🏻🏫", "👨🏻🏭", "👨🏻💻", "👨🏻💼", "👨🏻🔧", "👨🏻🔬", "👨🏻🚀", "👨🏻🚒", "👨🏻🦰", "👨🏻🦱", "👨🏻🦲", "👨🏻🦳", "👨🏼", "👨🏼⚕️", "👨🏼⚖️", "👨🏼✈️", "👨🏼🌾", "👨🏼🍳", "👨🏼🍼", "👨🏼🎓", "👨🏼🎤", "👨🏼🎨", "👨🏼🏫", "👨🏼🏭", "👨🏼💻", "👨🏼💼", "👨🏼🔧", "👨🏼🔬", "👨🏼🚀", "👨🏼🚒", "👨🏼🦰", "👨🏼🦱", "👨🏼🦲", "👨🏼🦳", "👨🏽", "👨🏽⚕️", "👨🏽⚖️", "👨🏽✈️", "👨🏽🌾", "👨🏽🍳", "👨🏽🍼", "👨🏽🎓", "👨🏽🎤", "👨🏽🎨", "👨🏽🏫", "👨🏽🏭", "👨🏽💻", "👨🏽💼", "👨🏽🔧", "👨🏽🔬", "👨🏽🚀", "👨🏽🚒", "👨🏽🦰", "👨🏽🦱", "👨🏽🦲", "👨🏽🦳", "👨🏾", "👨🏾⚕️", "👨🏾⚖️", "👨🏾✈️", "👨🏾🌾", "👨🏾🍳", "👨🏾🍼", "👨🏾🎓", "👨🏾🎤", "👨🏾🎨", "👨🏾🏫", "👨🏾🏭", "👨🏾💻", "👨🏾💼", "👨🏾🔧", "👨🏾🔬", "👨🏾🚀", "👨🏾🚒", "👨🏾🦰", "👨🏾🦱", "👨🏾🦲", "👨🏾🦳", "👨🏿", "👨🏿⚕️", "👨🏿⚖️", "👨🏿✈️", "👨🏿🌾", "👨🏿🍳", "👨🏿🍼", "👨🏿🎓", "👨🏿🎤", "👨🏿🎨", "👨🏿🏫", "👨🏿🏭", "👨🏿💻", "👨🏿💼", "👨🏿🔧", "👨🏿🔬", "👨🏿🚀", "👨🏿🚒", "👨🏿🦰", "👨🏿🦱", "👨🏿🦲", "👨🏿🦳", "👩", "👩⚕️", "👩⚖️", "👩✈️", "👩🌾", "👩🍳", "👩🍼", "👩🎓", "👩🎤", "👩🎨", "👩🏫", "👩🏭", "👩💻", "👩💼", "👩🔧", "👩🔬", "👩🚀", "👩🚒", "👩🦰", "👩🦱", "👩🦲", "👩🦳", "👩🏻", "👩🏻⚕️", "👩🏻⚖️", "👩🏻✈️", "👩🏻🌾", "👩🏻🍳", "👩🏻🍼", "👩🏻🎓", "👩🏻🎤", "👩🏻🎨", "👩🏻🏫", "👩🏻🏭", "👩🏻💻", "👩🏻💼", "👩🏻🔧", "👩🏻🔬", "👩🏻🚀", "👩🏻🚒", "👩🏻🦰", "👩🏻🦱", "👩🏻🦲", "👩🏻🦳", "👩🏼", "👩🏼⚕️", "👩🏼⚖️", "👩🏼✈️", "👩🏼🌾", "👩🏼🍳", "👩🏼🍼", "👩🏼🎓", "👩🏼🎤", "👩🏼🎨", "👩🏼🏫", "👩🏼🏭", "👩🏼💻", "👩🏼💼", "👩🏼🔧", "👩🏼🔬", "👩🏼🚀", "👩🏼🚒", "👩🏼🦰", "👩🏼🦱", "👩🏼🦲", "👩🏼🦳", "👩🏽", "👩🏽⚕️", "👩🏽⚖️", "👩🏽✈️", "👩🏽🌾", "👩🏽🍳", "👩🏽🍼", "👩🏽🎓", "👩🏽🎤", "👩🏽🎨", "👩🏽🏫", "👩🏽🏭", "👩🏽💻", "👩🏽💼", "👩🏽🔧", "👩🏽🔬", "👩🏽🚀", "👩🏽🚒", "👩🏽🦰", "👩🏽🦱", "👩🏽🦲", "👩🏽🦳", "👩🏾", "👩🏾⚕️", "👩🏾⚖️", "👩🏾✈️", "👩🏾🌾", "👩🏾🍳", "👩🏾🍼", "👩🏾🎓", "👩🏾🎤", "👩🏾🎨", "👩🏾🏫", "👩🏾🏭", "👩🏾💻", "👩🏾💼", "👩🏾🔧", "👩🏾🔬", "👩🏾🚀", "👩🏾🚒", "👩🏾🦰", "👩🏾🦱", "👩🏾🦲", "👩🏾🦳", "👩🏿", "👩🏿⚕️", "👩🏿⚖️", "👩🏿✈️", "👩🏿🌾", "👩🏿🍳", "👩🏿🍼", "👩🏿🎓", "👩🏿🎤", "👩🏿🎨", "👩🏿🏫", "👩🏿🏭", "👩🏿💻", "👩🏿💼", "👩🏿🔧", "👩🏿🔬", "👩🏿🚀", "👩🏿🚒", "👩🏿🦰", "👩🏿🦱", "👩🏿🦲", "👩🏿🦳", "👮", "👮♀️", "👮♂️", "👮🏻", "👮🏻♀️", "👮🏻♂️", "👮🏼", "👮🏼♀️", "👮🏼♂️", "👮🏽", "👮🏽♀️", "👮🏽♂️", "👮🏾", "👮🏾♀️", "👮🏾♂️", "👮🏿", "👮🏿♀️", "👮🏿♂️", "👰", "👰♀️", "👰♂️", "👰🏻", "👰🏻♀️", "👰🏻♂️", "👰🏼", "👰🏼♀️", "👰🏼♂️", "👰🏽", "👰🏽♀️", "👰🏽♂️", "👰🏾", "👰🏾♀️", "👰🏾♂️", "👰🏿", "👰🏿♀️", "👰🏿♂️", "👱", "👱♀️", "👱♂️", "👱🏻", "👱🏻♀️", "👱🏻♂️", "👱🏼", "👱🏼♀️", "👱🏼♂️", "👱🏽", "👱🏽♀️", "👱🏽♂️", "👱🏾", "👱🏾♀️", "👱🏾♂️", "👱🏿", "👱🏿♀️", "👱🏿♂️", "👲", "👲🏻", "👲🏼", "👲🏽", "👲🏾", "👲🏿", "👳", "👳♀️", "👳♂️", "👳🏻", "👳🏻♀️", "👳🏻♂️", "👳🏼", "👳🏼♀️", "👳🏼♂️", "👳🏽", "👳🏽♀️", "👳🏽♂️", "👳🏾", "👳🏾♀️", "👳🏾♂️", "👳🏿", "👳🏿♀️", "👳🏿♂️", "👴", "👴🏻", "👴🏼", "👴🏽", "👴🏾", "👴🏿", "👵", "👵🏻", "👵🏼", "👵🏽", "👵🏾", "👵🏿", "👶", "👶🏻", "👶🏼", "👶🏽", "👶🏾", "👶🏿", "👷", "👷♀️", "👷♂️", "👷🏻", "👷🏻♀️", "👷🏻♂️", "👷🏼", "👷🏼♀️", "👷🏼♂️", "👷🏽", "👷🏽♀️", "👷🏽♂️", "👷🏾", "👷🏾♀️", "👷🏾♂️", "👷🏿", "👷🏿♀️", "👷🏿♂️", "👸", "👸🏻", "👸🏼", "👸🏽", "👸🏾", "👸🏿", "👼", "👼🏻", "👼🏼", "👼🏽", "👼🏾", "👼🏿", "💁", "💁♀️", "💁♂️", "💁🏻", "💁🏻♀️", "💁🏻♂️", "💁🏼", "💁🏼♀️", "💁🏼♂️", "💁🏽", "💁🏽♀️", "💁🏽♂️", "💁🏾", "💁🏾♀️", "💁🏾♂️", "💁🏿", "💁🏿♀️", "💁🏿♂️", "💂", "💂♀️", "💂♂️", "💂🏻", "💂🏻♀️", "💂🏻♂️", "💂🏼", "💂🏼♀️", "💂🏼♂️", "💂🏽", "💂🏽♀️", "💂🏽♂️", "💂🏾", "💂🏾♀️", "💂🏾♂️", "💂🏿", "💂🏿♀️", "💂🏿♂️", "💆", "💆♀️", "💆♂️", "💆🏻", "💆🏻♀️", "💆🏻♂️", "💆🏼", "💆🏼♀️", "💆🏼♂️", "💆🏽", "💆🏽♀️", "💆🏽♂️", "💆🏾", "💆🏾♀️", "💆🏾♂️", "💆🏿", "💆🏿♀️", "💆🏿♂️", "💇", "💇🏻", "💇🏼", "💇🏽", "🕵🏻", "🕵🏻♀️", "🕵🏻♂️", "🕵🏼", "🕵🏼♀️", "🕵🏼♂️", "🕵🏽", "🕵🏽♀️", "🕵🏽♂️", "🕵🏾", "🕵🏾♀️", "🕵🏾♂️", "🕵🏿", "🕵🏿♀️", "🕵🏿♂️", "🕵️", "🕵️♀️", "🕵️♂️", "🙅", "🙅♀️", "🙅♂️", "🙅🏻", "🙅🏻♀️", "🙅🏻♂️", "🙅🏼", "🙅🏼♀️", "🙅🏼♂️", "🙅🏽", "🙅🏽♀️", "🙅🏽♂️", "🙅🏾", "🙅🏾♀️", "🙅🏾♂️", "🙅🏿", "🙅🏿♀️", "🙅🏿♂️", "🙆", "🙆♀️", "🙆♂️", "🙆🏻", "🙆🏻♀️", "🙆🏻♂️", "🙆🏼", "🙆🏼♀️", "🙆🏼♂️", "🙆🏽", "🙆🏽♀️", "🙆🏽♂️", "🙆🏾", "🙆🏾♀️", "🙆🏾♂️", "🙆🏿", "🙆🏿♀️", "🙆🏿♂️", "🙇", "🙇♀️", "🙇♂️", "🙇🏻", "🙇🏻♀️", "🙇🏻♂️", "🙇🏼", "🙇🏼♀️", "🙇🏼♂️", "🙇🏽", "🙇🏽♀️", "🙇🏽♂️", "🙇🏾", "🙇🏾♀️", "🙇🏾♂️", "🙇🏿", "🙇🏿♀️", "🙇🏿♂️", "🙋", "🙋♀️", "🙋♂️", "🙋🏻", "🙋🏻♀️", "🙋🏻♂️", "🙋🏼", "🙋🏼♀️", "🙋🏼♂️", "🙋🏽", "🙋🏽♀️", "🙋🏽♂️", "🙋🏾", "🙋🏾♀️", "🙋🏾♂️", "🙋🏿", "🙋🏿♀️", "🙋🏿♂️", "🙍", "🙍♀️", "🙍♂️", "🙍🏻", "🙍🏻♀️", "🙍🏻♂️", "🙍🏼", "🙍🏼♀️", "🙍🏼♂️", "🙍🏽", "🙍🏽♀️", "🙍🏽♂️", "🙍🏾", "🙍🏾♀️", "🙍🏾♂️", "🙍🏿", "🙍🏿♀️", "🙍🏿♂️", "🙎", "🙎♀️", "🙎♂️", "🙎🏻", "🙎🏻♀️", "🙎🏻♂️", "🙎🏼", "🙎🏼♀️", "🙎🏼♂️", "🙎🏽", "🙎🏽♀️", "🙎🏽♂️", "🙎🏾", "🙎🏾♀️", "🙎🏾♂️", "🙎🏿", "🙎🏿♀️", "🙎🏿♂️", "🤦", "🤦♀️", "🤦♂️", "🤦🏻", "🤦🏻♀️", "🤦🏻♂️", "🤦🏼", "🤦🏼♀️", "🤦🏼♂️", "🤦🏽", "🤦🏽♀️", "🤦🏽♂️", "🤦🏾", "🤦🏾♀️", "🤦🏾♂️", "🤦🏿", "🤦🏿♀️", "🤦🏿♂️", "🤰", "🤰🏻", "🤰🏼", "🤰🏽", "🤰🏾", "🤰🏿", "🤱", "🤱🏻", "🤱🏼", "🤱🏽", "🤱🏾", "🤱🏿", "🤴", "🤴🏻", "🤴🏼", "🤴🏽", "🤴🏾", "🤴🏿", "🤵", "🤵♀️", "🤵♂️", "🤵🏻", "🤵🏻♀️", "🤵🏻♂️", "🤵🏼", "🤵🏼♀️", "🤵🏼♂️", "🤵🏽", "🤵🏽♀️", "🤵🏽♂️", "🤵🏾", "🤵🏾♀️", "🤵🏾♂️", "🤵🏿", "🤵🏿♀️", "🤵🏿♂️", "🤶", "🤶🏻", "🤶🏼", "🤶🏽", "🤶🏾", "🤶🏿", "🤷", "🤷♀️", "🤷♂️", "🤷🏻", "🤷🏻♀️", "🤷🏻♂️", "🤷🏼", "🤷🏼♀️", "🤷🏼♂️", "🤷🏽", "🤷🏽♀️", "🤷🏽♂️", "🤷🏾", "🤷🏾♀️", "🤷🏾♂️", "🤷🏿", "🤷🏿♀️", "🤷🏿♂️", "🥷", "🥷🏻", "🥷🏼", "🥷🏽", "🥷🏾", "🥷🏿", "🦸", "🦸♀️", "🦸♂️", "🦸🏻", "🦸🏻♀️", "🦸🏻♂️", "🦸🏼", "🦸🏼♀️", "🦸🏼♂️", "🦸🏽", "🦸🏽♀️", "🦸🏽♂️", "🦸🏾", "🦸🏾♀️", "🦸🏾♂️", "🦸🏿", "🦸🏿♀️", "🦸🏿♂️", "🦹", "🦹♀️", "🦹♂️", "🦹🏻", "🦹🏻♀️", "🦹🏻♂️", "🦹🏼", "🦹🏼♀️", "🦹🏼♂️", "🦹🏽", "🦹🏽♀️", "🦹🏽♂️", "🦹🏾", "🦹🏾♀️", "🦹🏾♂️", "🦹🏿", "🦹🏿♀️", "🦹🏿♂️", "🧏", "🧏♀️", "🧏♂️", "🧏🏻", "🧏🏻♀️", "🧏🏻♂️", "🧏🏼", "🧏🏼♀️", "🧏🏼♂️", "🧏🏽", "🧏🏽♀️", "🧏🏽♂️", "🧏🏾", "🧏🏾♀️", "🧏🏾♂️", "🧏🏿", "🧏🏿♀️", "🧏🏿♂️", "🧑", "🧑⚕️", "🧑⚖️", "🧑✈️", "🧑🌾", "🧑🍳", "🧑🍼", "🧑🎄", "🧑🎓", "🧑🎤", "🧑🎨", "🧑🏫", "🧑🏭", "🧑💻", "🧑💼", "🧑🔧", "🧑🔬", "🧑🚀", "🧑🚒", "🧑🦰", "🧑🦱", "🧑🦲", "🧑🦳", "🧑🏻", "🧑🏻⚕️", "🧑🏻⚖️", "🧑🏻✈️", "🧑🏻🌾", "🧑🏻🍳", "🧑🏻🍼", "🧑🏻🎄", "🧑🏻🎓", "🧑🏻🎤", "🧑🏻🎨", "🧑🏻🏫", "🧑🏻🏭", "🧑🏻💻", "🧑🏻💼", "🧑🏻🔧", "🧑🏻🔬", "🧑🏻🚀", "🧑🏻🚒", "🧑🏻🦰", "🧑🏻🦱", "🧑🏻🦲", "🧑🏻🦳", "🧑🏼", "🧑🏼⚕️", "🧑🏼⚖️", "🧑🏼✈️", "🧑🏼🌾", "🧑🏼🍳", "🧑🏼🍼", "🧑🏼🎄", "🧑🏼🎓", "🧑🏼🎤", "🧑🏼🎨", "🧑🏼🏫", "🧑🏼🏭", "🧑🏼💻", "🧑🏼💼", "🧑🏼🔧", "🧑🏼🔬", "🧑🏼🚀", "🧑🏼🚒", "🧑🏼🦰", "🧑🏼🦱", "🧑🏼🦲", "🧑🏼🦳", "🧑🏽", "🧑🏽⚕️", "🧑🏽⚖️", "🧑🏽✈️", "🧑🏽🌾", "🧑🏽🍳", "🧑🏽🍼", "🧑🏽🎄", "🧑🏽🎓", "🧑🏽🎤", "🧑🏽🎨", "🧑🏽🏫", "🧑🏽🏭", "🧑🏽💻", "🧑🏽💼", "🧑🏽🔧", "🧑🏽🔬", "🧑🏽🚀", "🧑🏽🚒", "🧑🏽🦰", "🧑🏽🦱", "🧑🏽🦲", "🧑🏽🦳", "🧑🏾", "🧑🏾⚕️", "🧑🏾⚖️", "🧑🏾✈️", "🧑🏾🌾", "🧑🏾🍳", "🧑🏾🍼", "🧑🏾🎄", "🧑🏾🎓", "🧑🏾🎤", "🧑🏾🎨", "🧑🏾🏫", "🧑🏾🏭", "🧑🏾💻", "🧑🏾💼", "🧑🏾🔧", "🧑🏾🔬", "🧑🏾🚀", "🧑🏾🚒", "🧑🏾🦰", "🧑🏾🦱", "🧑🏾🦲", "🧑🏾🦳", "🧑🏿", "🧑🏿⚕️", "🧑🏿⚖️", "🧑🏿✈️", "🧑🏿🌾", "🧑🏿🍳", "🧑🏿🍼", "🧑🏿🎄", "🧑🏿🎓", "🧑🏿🎤", "🧑🏿🎨", "🧑🏿🏫", "🧑🏿🏭", "🧑🏿💻", "🧑🏿💼", "🧑🏿🔧", "🧑🏿🔬", "🧑🏿🚀", "🧑🏿🚒", "🧑🏿🦰", "🧑🏿🦱", "🧑🏿🦲", "🧑🏿🦳", "🧒", "🧒🏻", "🧒🏼", "🧒🏽", "🧒🏾", "🧒🏿", "🧓", "🧓🏻", "🧓🏼", "🧓🏽", "🧓🏾", "🧓🏿", "🧔", "🧔♀️", "🧔♂️", "🧔🏻", "🧔🏻♀️", "🧔🏻♂️", "🧔🏼", "🧔🏼♀️", "🧔🏼♂️", "🧔🏽", "🧔🏽♀️", "🧔🏽♂️", "🧔🏾", "🧔🏾♀️", "🧔🏾♂️", "🧔🏿", "🧔🏿♀️", "🧔🏿♂️", "🧕", "🧕🏻", "🧕🏼", "🧕🏽", "🧕🏾", "🧕🏿", "🧙", "🧙♀️", "🧙♂️", "🧙🏻", "🧙🏻♀️", "🧙🏻♂️", "🧙🏼", "🧙🏼♀️", "🧙🏼♂️", "🧙🏽", "🧙🏽♀️", "🧙🏽♂️", "🧙🏾", "🧙🏾♀️", "🧙🏾♂️", "🧙🏿", "🧙🏿♀️", "🧙🏿♂️", "🧚", "🧚♀️", "🧚♂️", "🧚🏻", "🧚🏻♀️", "🧚🏻♂️", "🧚🏼", "🧚🏼♀️", "🧚🏼♂️", "🧚🏽", "🧚🏽♀️", "🧚🏽♂️", "🧚🏾", "🧚🏾♀️", "🧚🏾♂️", "🧚🏿", "🧚🏿♀️", "🧚🏿♂️", "🧛", "🧛♀️", "🧛♂️", "🧛🏻", "🧛🏻♀️", "🧛🏻♂️", "🧛🏼", "🧛🏼♀️", "🧛🏼♂️", "🧛🏽", "🧛🏽♀️", "🧛🏽♂️", "🧛🏾", "🧛🏾♀️", "🧛🏾♂️", "🧛🏿", "🧛🏿♀️", "🧛🏿♂️", "🧜", "🧜♀️", "🧜♂️", "🧜🏻", "🧜🏻♀️", "🧜🏻♂️", "🧜🏼", "🧜🏼♀️", "🧜🏼♂️", "🧜🏽", "🧜🏽♀️", "🧜🏽♂️", "🧜🏾", "🧜🏾♀️", "🧜🏾♂️", "🧜🏿", "🧜🏿♀️", "🧜🏿♂️", "🧝", "🧝♀️", "🧝♂️", "🧝🏻", "🧝🏻♀️", "🧝🏻♂️", "🧝🏼", "🧝🏼♀️", "🧝🏼♂️", "🧝🏽", "🧝🏽♀️", "🧝🏽♂️", "🧝🏾", "🧝🏾♀️", "🧝🏾♂️", "🧝🏿", "🧝🏿♀️", "🧝🏿♂️", "🧞", "🧞♀️", "🧞♂️", "🧟", "🧟♀️", "🧟♂️"], nature: ["☘️", "🌱", "🌲", "🌳", "🌴", "🌵", "🌷", "🌸", "🌹", "🌺", "🌻", "🌼", "🌾", "🌿", "🍀", "🍁", "🍂", "🍃", "🏵️", "🐀", "🐁", "🐂", "🐃", "🐄", "🐅", "🐆", "🐇", "🐈", "🐈⬛", "🐉", "🐊", "🐋", "🐌", "🐍", "🐎", "🐏", "🐐", "🐑", "🐒", "🐓", "🐔", "🐕", "🐕🦺", "🐖", "🐗", "🐘", "🐙", "🐚", "🐛", "🐜", "🐝", "🐞", "🐟", "🐠", "🐡", "🐢", "🐣", "🐤", "🐥", "🐦", "🐧", "🐨", "🐩", "🐪", "🐫", "🐬", "🐭", "🐮", "🐯", "🐰", "🐱", "🐲", "🐳", "🐴", "🐵", "🐶", "🐷", "🐸", "🐹", "🐺", "🐻", "🐻❄️", "🐼", "🐽", "🐾", "🐿️", "💐", "💮", "🕊️", "🕷️", "🕸️", "🥀", "🦁", "🦂", "🦃", "🦄", "🦅", "🦆", "🦇", "🦈", "🦉", "🦊", "🦋", "🦌", "🦍", "🦎", "🦏", "🦒", "🦓", "🦔", "🦕", "🦖", "🦗", "🦘", "🦙", "🦚", "🦛", "🦜", "🦝", "🦟", "🦠", "🦡", "🦢", "🦣", "🦤", "🦥", "🦦", "🦧", "🦨", "🦩", "🦫", "🦬", "🦭", "🦮", "🪰", "🪱", "🪲", "🪳", "🪴", "🪶"], food: ["☕", "🌭", "🌮", "🌯", "🌰", "🌶️", "🌽", "🍄", "🍅", "🍆", "🍇", "🍈", "🍉", "🍊", "🍋", "🍌", "🍍", "🍎", "🍏", "🍐", "🍑", "🍒", "🍓", "🍔", "🍕", "🍖", "🍗", "🍘", "🍙", "🍚", "🍛", "🍜", "🍝", "🍞", "🍟", "🍠", "🍡", "🍢", "🍣", "🍤", "🍥", "🍦", "🍧", "🍨", "🍩", "🍪", "🍫", "🍬", "🍭", "🍮", "🍯", "🍰", "🍱", "🍲", "🍳", "🍴", "🍵", "🍶", "🍷", "🍸", "🍹", "🍺", "🍻", "🍼", "🍽️", "🍾", "🍿", "🎂", "🏺", "🔪", "🥂", "🥃", "🥄", "🥐", "🥑", "🥒", "🥓", "🥔", "🥕", "🥖", "🥗", "🥘", "🥙", "🥚", "🥛", "🥜", "🥝", "🥞", "🥟", "🥠", "🥡", "🥢", "🥣", "🥤", "🥥", "🥦", "🥧", "🥨", "🥩", "🥪", "🥫", "🥬", "🥭", "🥮", "🥯", "🦀", "🦐", "🦑", "🦞", "🦪", "🧀", "🧁", "🧂", "🧃", "🧄", "🧅", "🧆", "🧇", "🧈", "🧉", "🧊", "🧋", "🫐", "🫑", "🫒", "🫓", "🫔", "🫕", "🫖"], travel: ["⌚", "⌛", "⏰", "⏱️", "⏲️", "⏳", "☀️", "☁️", "☂️", "☃️", "☄️", "☔", "♨️", "⚓", "⚡", "⛄", "⛅", "⛈️", "⛩️", "⛪", "⛰️", "⛱️", "⛲", "⛴️", "⛵", "⛺", "⛽", "✈️", "❄️", "⭐", "🌀", "🌁", "🌂", "🌃", "🌄", "🌅", "🌆", "🌇", "🌈", "🌉", "🌊", "🌋", "🌌", "🌍", "🌎", "🌏", "🌐", "🌑", "🌒", "🌓", "🌔", "🌕", "🌖", "🌗", "🌘", "🌙", "🌚", "🌛", "🌜", "🌝", "🌞", "🌟", "🌠", "🌡️", "🌤️", "🌥️", "🌦️", "🌧️", "🌨️", "🌩️", "🌪️", "🌫️", "🌬️", "🎠", "🎡", "🎢", "🎪", "🏍️", "🏎️", "🏔️", "🏕️", "🏖️", "🏗️", "🏘️", "🏙️", "🏚️", "🏛️", "🏜️", "🏝️", "🏞️", "🏟️", "🏠", "🏡", "🏢", "🏣", "🏤", "🏥", "🏦", "🏨", "🏩", "🏪", "🏫", "🏬", "🏭", "🏯", "🏰", "💈", "💒", "💧", "💺", "🔥", "🕋", "🕌", "🕍", "🕐", "🕑", "🕒", "🕓", "🕔", "🕕", "🕖", "🕗", "🕘", "🕙", "🕚", "🕛", "🕜", "🕝", "🕞", "🕟", "🕠", "🕡", "🕢", "🕣", "🕤", "🕥", "🕦", "🕧", "🕰️", "🗺️", "🗻", "🗼", "🗽", "🗾", "🚀", "🚁", "🚂", "🚃", "🚄", "🚅", "🚆", "🚇", "🚈", "🚉", "🚊", "🚋", "🚌", "🚍", "🚎", "🚏", "🚐", "🚑", "🚒", "🚓", "🚔", "🚕", "🚖", "🚗", "🚘", "🚙", "🚚", "🚛", "🚜", "🚝", "🚞", "🚟", "🚠", "🚡", "🚢", "🚤", "🚥", "🚦", "🚧", "🚨", "🚲", "🛎️", "🛑", "🛕", "🛖", "🛢️", "🛣️", "🛤️", "🛥️", "🛩️", "🛫", "🛬", "🛰️", "🛳️", "🛴", "🛵", "🛶", "🛸", "🛹", "🛺", "🛻", "🛼", "🦼", "🦽", "🧭", "🧱", "🧳", "🪂", "🪐", "🪨", "🪵"], activity: ["♟️", "♠️", "♣️", "♥️", "♦️", "⚽", "⚾", "⛳", "⛸️", "✨", "🀄", "🃏", "🎀", "🎁", "🎃", "🎄", "🎆", "🎇", "🎈", "🎉", "🎊", "🎋", "🎍", "🎎", "🎏", "🎐", "🎑", "🎖️", "🎗️", "🎟️", "🎣", "🎨", "🎫", "🎭", "🎮", "🎯", "🎰", "🎱", "🎲", "🎳", "🎴", "🎽", "🎾", "🎿", "🏀", "🏅", "🏆", "🏈", "🏉", "🏏", "🏐", "🏑", "🏒", "🏓", "🏸", "🔮", "🕹️", "🖼️", "🛷", "🤿", "🥅", "🥇", "🥈", "🥉", "🥊", "🥋", "🥌", "🥍", "🥎", "🥏", "🧧", "🧨", "🧩", "🧵", "🧶", "🧸", "🧿", "🪀", "🪁", "🪄", "🪅", "🪆", "🪡", "🪢"], object: ["⌨️", "☎️", "⚒️", "⚔️", "⚖️", "⚗️", "⚙️", "⚰️", "⚱️", "⛏️", "⛑️", "⛓️", "✂️", "✉️", "✏️", "✒️", "🎒", "🎓", "🎙️", "🎚️", "🎛️", "🎞️", "🎤", "🎥", "🎧", "🎩", "🎬", "🎵", "🎶", "🎷", "🎸", "🎹", "🎺", "🎻", "🎼", "🏮", "🏷️", "🏹", "👑", "👒", "👓", "👔", "👕", "👖", "👗", "👘", "👙", "👚", "👛", "👜", "👝", "👞", "👟", "👠", "👡", "👢", "💄", "💉", "💊", "💍", "💎", "💡", "💰", "💳", "💴", "💵", "💶", "💷", "💸", "💹", "💻", "💼", "💽", "💾", "💿", "📀", "📁", "📂", "📃", "📄", "📅", "📆", "📇", "📈", "📉", "📊", "📋", "📌", "📍", "📎", "📏", "📐", "📑", "📒", "📓", "📔", "📕", "📖", "📗", "📘", "📙", "📚", "📜", "📝", "📞", "📟", "📠", "📡", "📢", "📣", "📤", "📥", "📦", "📧", "📨", "📩", "📪", "📫", "📬", "📭", "📮", "📯", "📰", "📱", "📲", "📷", "📸", "📹", "📺", "📻", "📼", "📽️", "📿", "🔇", "🔈", "🔉", "🔊", "🔋", "🔌", "🔍", "🔎", "🔏", "🔐", "🔑", "🔒", "🔓", "🔔", "🔕", "🔖", "🔗", "🔦", "🔧", "🔨", "🔩", "🔫", "🔬", "🔭", "🕯️", "🕶️", "🖇️", "🖊️", "🖋️", "🖌️", "🖍️", "🖥️", "🖨️", "🖱️", "🖲️", "🗂️", "🗃️", "🗄️", "🗑️", "🗒️", "🗓️", "🗜️", "🗝️", "🗞️", "🗡️", "🗳️", "🗿", "🚪", "🚬", "🚽", "🚿", "🛁", "🛋️", "🛍️", "🛏️", "🛒", "🛗", "🛠️", "🛡️", "🥁", "🥻", "🥼", "🥽", "🥾", "🥿", "🦯", "🦺", "🧢", "🧣", "🧤", "🧥", "🧦", "🧪", "🧫", "🧬", "🧮", "🧯", "🧰", "🧲", "🧴", "🧷", "🧹", "🧺", "🧻", "🧼", "🧽", "🧾", "🩰", "🩱", "🩲", "🩳", "🩴", "🩸", "🩹", "🩺", "🪃", "🪑", "🪒", "🪓", "🪔", "🪕", "🪖", "🪗", "🪘", "🪙", "🪚", "🪛", "🪜", "🪝", "🪞", "🪟", "🪠", "🪣", "🪤", "🪥", "🪦", "🪧"], symbol: ["#️⃣", "*️⃣", "0️⃣", "1️⃣", "2️⃣", "3️⃣", "4️⃣", "5️⃣", "6️⃣", "7️⃣", "8️⃣", "9️⃣", "©️", "®️", "‼️", "⁉️", "™️", "ℹ️", "↔️", "↕️", "↖️", "↗️", "↘️", "↙️", "↩️", "↪️", "⏏️", "⏩", "⏪", "⏫", "⏬", "⏭️", "⏮️", "⏯️", "⏸️", "⏹️", "⏺️", "Ⓜ️", "▪️", "▫️", "▶️", "◀️", "◻️", "◼️", "◽", "◾", "☑️", "☢️", "☣️", "☦️", "☪️", "☮️", "☯️", "☸️", "♀️", "♂️", "♈", "♉", "♊", "♋", "♌", "♍", "♎", "♏", "♐", "♑", "♒", "♓", "♻️", "♾️", "♿", "⚕️", "⚛️", "⚜️", "⚠️", "⚧️", "⚪", "⚫", "⛎", "⛔", "✅", "✔️", "✖️", "✝️", "✡️", "✳️", "✴️", "❇️", "❌", "❎", "❓", "❔", "❕", "❗", "➕", "➖", "➗", "➡️", "➰", "➿", "⤴️", "⤵️", "⬅️", "⬆️", "⬇️", "⬛", "⬜", "⭕", "〰️", "〽️", "㊗️", "㊙️", "🅰️", "🅱️", "🅾️", "🅿️", "🆎", "🆑", "🆒", "🆓", "🆔", "🆕", "🆖", "🆗", "🆘", "🆙", "🆚", "🈁", "🈂️", "🈚", "🈯", "🈲", "🈳", "🈴", "🈵", "🈶", "🈷️", "🈸", "🈹", "🈺", "🉐", "🉑", "🎦", "🏧", "💠", "💱", "💲", "📛", "📳", "📴", "📵", "📶", "🔀", "🔁", "🔂", "🔃", "🔄", "🔅", "🔆", "🔘", "🔙", "🔚", "🔛", "🔜", "🔝", "🔞", "🔟", "🔠", "🔡", "🔢", "🔣", "🔤", "🔯", "🔰", "🔱", "🔲", "🔳", "🔴", "🔵", "🔶", "🔷", "🔸", "🔹", "🔺", "🔻", "🔼", "🔽", "🕉️", "🕎", "🚫", "🚭", "🚮", "🚯", "🚰", "🚱", "🚳", "🚷", "🚸", "🚹", "🚺", "🚻", "🚼", "🚾", "🛂", "🛃", "🛄", "🛅", "🛐", "🟠", "🟡", "🟢", "🟣", "🟤", "🟥", "🟦", "🟧", "🟨", "🟩", "🟪", "🟫"], flag: ["🇦🇨", "🇦🇩", "🇦🇪", "🇦🇫", "🇦🇬", "🇦🇮", "🇦🇱", "🇦🇲", "🇦🇴", "🇦🇶", "🇦🇷", "🇦🇸", "🇦🇹", "🇦🇺", "🇦🇼", "🇦🇽", "🇦🇿", "🇧🇦", "🇧🇧", "🇧🇩", "🇧🇪", "🇧🇫", "🇧🇬", "🇧🇭", "🇧🇮", "🇧🇯", "🇧🇱", "🇧🇲", "🇧🇳", "🇧🇴", "🇧🇶", "🇧🇷", "🇧🇸", "🇧🇹", "🇧🇻", "🇧🇼", "🇧🇾", "🇧🇿", "🇨🇦", "🇨🇨", "🇨🇩", "🇨🇫", "🇨🇬", "🇨🇭", "🇨🇮", "🇨🇰", "🇨🇱", "🇨🇲", "🇨🇳", "🇨🇴", "🇨🇵", "🇨🇷", "🇨🇺", "🇨🇻", "🇨🇼", "🇨🇽", "🇨🇾", "🇨🇿", "🇩🇪", "🇩🇬", "🇩🇯", "🇩🇰", "🇩🇲", "🇩🇴", "🇩🇿", "🇪🇦", "🇪🇨", "🇪🇪", "🇪🇬", "🇪🇭", "🇪🇷", "🇪🇸", "🇪🇹", "🇪🇺", "🇫🇮", "🇫🇯", "🇫🇰", "🇫🇲", "🇫🇴", "🇫🇷", "🇬🇦", "🇬🇧", "🇬🇩", "🇬🇪", "🇬🇫", "🇬🇬", "🇬🇭", "🇬🇮", "🇬🇱", "🇬🇲", "🇬🇳", "🇬🇵", "🇬🇶", "🇬🇷", "🇬🇸", "🇬🇹", "🇬🇺", "🇬🇼", "🇬🇾", "🇭🇰", "🇭🇲", "🇭🇳", "🇭🇷", "🇭🇹", "🇭🇺", "🇮🇨", "🇮🇩", "🇮🇪", "🇮🇱", "🇮🇲", "🇮🇳", "🇮🇴", "🇮🇶", "🇮🇷", "🇮🇸", "🇮🇹", "🇯🇪", "🇯🇲", "🇯🇴", "🇯🇵", "🇰🇪", "🇰🇬", "🇰🇭", "🇰🇮", "🇰🇲", "🇰🇳", "🇰🇵", "🇰🇷", "🇰🇼", "🇰🇾", "🇰🇿", "🇱🇦", "🇱🇧", "🇱🇨", "🇱🇮", "🇱🇰", "🇱🇷", "🇱🇸", "🇱🇹", "🇱🇺", "🇱🇻", "🇱🇾", "🇲🇦", "🇲🇨", "🇲🇩", "🇲🇪", "🇲🇫", "🇲🇬", "🇲🇭", "🇲🇰", "🇲🇱", "🇲🇲", "🇲🇳", "🇲🇴", "🇲🇵", "🇲🇶", "🇲🇷", "🇲🇸", "🇲🇹", "🇲🇺", "🇲🇻", "🇲🇼", "🇲🇽", "🇲🇾", "🇲🇿", "🇳🇦", "🇳🇨", "🇳🇪", "🇳🇫", "🇳🇬", "🇳🇮", "🇳🇱", "🇳🇴", "🇳🇵", "🇳🇷", "🇳🇺", "🇳🇿", "🇴🇲", "🇵🇦", "🇵🇪", "🇵🇫", "🇵🇬", "🇵🇭", "🇵🇰", "🇵🇱", "🇵🇲", "🇵🇳", "🇵🇷", "🇵🇸", "🇵🇹", "🇵🇼", "🇵🇾", "🇶🇦", "🇷🇪", "🇷🇴", "🇷🇸", "🇷🇺", "🇷🇼", "🇸🇦", "🇸🇧", "🇸🇨", "🇸🇩", "🇸🇪", "🇸🇬", "🇸🇭", "🇸🇮", "🇸🇯", "🇸🇰", "🇸🇱", "🇸🇲", "🇸🇳", "🇸🇴", "🇸🇷", "🇸🇸", "🇸🇹", "🇸🇻", "🇸🇽", "🇸🇾", "🇸🇿", "🇹🇦", "🇹🇨", "🇹🇩", "🇹🇫", "🇹🇬", "🇹🇭", "🇹🇯", "🇹🇰", "🇹🇱", "🇹🇲", "🇹🇳", "🇹🇴", "🇹🇷", "🇹🇹", "🇹🇻", "🇹🇼", "🇹🇿", "🇺🇦", "🇺🇬", "🇺🇲", "🇺🇳", "🇺🇸", "🇺🇾", "🇺🇿", "🇻🇦", "🇻🇨", "🇻🇪", "🇻🇬", "🇻🇮", "🇻🇳", "🇻🇺", "🇼🇫", "🇼🇸", "🇽🇰", "🇾🇪", "🇾🇹", "🇿🇦", "🇿🇲", "🇿🇼", "🎌", "🏁", "🏳️", "🏳️⚧️", "🏳️🌈", "🏴", "🏴☠️", "🚩"] };
|
|
15527
|
+
var lr = { informational: [100, 101, 102, 103], success: [200, 201, 202, 203, 204, 205, 206, 207, 208, 226], redirection: [300, 301, 302, 303, 304, 305, 306, 307, 308], clientError: [400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 421, 422, 423, 424, 425, 426, 428, 429, 431, 451], serverError: [500, 501, 502, 503, 504, 505, 506, 507, 508, 510, 511] };
|
|
15528
|
+
var mr = ["ES256", "ES384", "ES512", "HS256", "HS384", "HS512", "PS256", "PS384", "PS512", "RS256", "RS384", "RS512", "none"];
|
|
15529
|
+
var ur = ["FakerBot/{{system.semver}}", "Googlebot/2.1 (+http://www.google.com/bot.html)", 'Mozilla/5.0 (Linux; Android {{number.int({"min":5,"max":13})}}; {{helpers.arrayElement(["SM-G998U","SM-G998B","SM-G998N","SM-G998P","SM-T800"])}}) AppleWebKit/{{number.int({"min":536,"max":605})}}.{{number.int({"min":0,"max":99})}} (KHTML, like Gecko) Chrome/{{number.int({"min":55,"max":131})}}.{{system.semver}} Mobile Safari/{{number.int({"min":536,"max":605})}}.{{number.int({"min":0,"max":99})}}', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:{{number.int({"min":75, "max":133})}}.0) Gecko/20100101 Firefox/{{number.int({"min":75, "max":133})}}.0', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/{{number.int({"min":536,"max":605})}}.{{number.int({"min":0,"max":99})}}.{{number.int({"min":0,"max":99})}} (KHTML, like Gecko) Version/16.1 Safari/{{number.int({"min":536,"max":605})}}.{{number.int({"min":0,"max":99})}}.{{number.int({"min":0,"max":99})}}', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_15_7) AppleWebKit/{{number.int({"min":536,"max":605})}}.{{number.int({"min":0,"max":99})}}.{{number.int({"min":0,"max":99})}} (KHTML, like Gecko) Chrome/{{number.int({"min":55,"max":131})}}.{{system.semver}} Safari/{{number.int({"min":536,"max":605})}}.{{number.int({"min":0,"max":99})}}.{{number.int({"min":0,"max":99})}}', 'Mozilla/5.0 (Windows NT {{helpers.arrayElement(["5.1","5.2","6.0","6.1","6.2","6.3","10.0"])}}; Win64; x64) AppleWebKit/{{number.int({"min":536,"max":605})}}.{{number.int({"min":0,"max":99})}} (KHTML, like Gecko) Chrome/{{number.int({"min":55,"max":131})}}.{{system.semver}} Safari/{{number.int({"min":536,"max":605})}}.{{number.int({"min":0,"max":99})}} Edg/{{number.int({"min":110,"max":131})}}.{{system.semver}}', 'Mozilla/5.0 (X11; Linux x86_64; rv:{{number.int({"min":75,"max":133})}}.0) Gecko/20100101 Firefox/{{number.int({"min":75,"max":133})}}.0', 'Mozilla/5.0 (compatible; MSIE {{number.int({"min":6,"max":10})}}.0; Windows NT {{helpers.arrayElement(["5.1","5.2","6.0","6.1","6.2","6.3","10.0"])}}; Trident/{{number.int({"min":4,"max":7})}}.0)', 'Mozilla/5.0 (iPhone; CPU iPhone OS {{number.int({"min":10,"max":18})}}_{{number.int({"min":0,"max":4})}} like Mac OS X) AppleWebKit/{{number.int({"min":536,"max":605})}}.{{number.int({"min":0,"max":99})}}.{{number.int({"min":0,"max":99})}} (KHTML, like Gecko) Version/{{number.int({"min":10,"max":18})}}_{{number.int({"min":0,"max":4})}} Mobile/15E148 Safari/{{number.int({"min":536,"max":605})}}.{{number.int({"min":0,"max":99})}}'];
|
|
15530
|
+
var at = { emoji: cr, http_status_code: lr, jwt_algorithm: mr, user_agent_pattern: ur }, pr = at;
|
|
15531
|
+
var hr = [{ alpha2: "AD", alpha3: "AND", numeric: "020" }, { alpha2: "AE", alpha3: "ARE", numeric: "784" }, { alpha2: "AF", alpha3: "AFG", numeric: "004" }, { alpha2: "AG", alpha3: "ATG", numeric: "028" }, { alpha2: "AI", alpha3: "AIA", numeric: "660" }, { alpha2: "AL", alpha3: "ALB", numeric: "008" }, { alpha2: "AM", alpha3: "ARM", numeric: "051" }, { alpha2: "AO", alpha3: "AGO", numeric: "024" }, { alpha2: "AQ", alpha3: "ATA", numeric: "010" }, { alpha2: "AR", alpha3: "ARG", numeric: "032" }, { alpha2: "AS", alpha3: "ASM", numeric: "016" }, { alpha2: "AT", alpha3: "AUT", numeric: "040" }, { alpha2: "AU", alpha3: "AUS", numeric: "036" }, { alpha2: "AW", alpha3: "ABW", numeric: "533" }, { alpha2: "AX", alpha3: "ALA", numeric: "248" }, { alpha2: "AZ", alpha3: "AZE", numeric: "031" }, { alpha2: "BA", alpha3: "BIH", numeric: "070" }, { alpha2: "BB", alpha3: "BRB", numeric: "052" }, { alpha2: "BD", alpha3: "BGD", numeric: "050" }, { alpha2: "BE", alpha3: "BEL", numeric: "056" }, { alpha2: "BF", alpha3: "BFA", numeric: "854" }, { alpha2: "BG", alpha3: "BGR", numeric: "100" }, { alpha2: "BH", alpha3: "BHR", numeric: "048" }, { alpha2: "BI", alpha3: "BDI", numeric: "108" }, { alpha2: "BJ", alpha3: "BEN", numeric: "204" }, { alpha2: "BL", alpha3: "BLM", numeric: "652" }, { alpha2: "BM", alpha3: "BMU", numeric: "060" }, { alpha2: "BN", alpha3: "BRN", numeric: "096" }, { alpha2: "BO", alpha3: "BOL", numeric: "068" }, { alpha2: "BQ", alpha3: "BES", numeric: "535" }, { alpha2: "BR", alpha3: "BRA", numeric: "076" }, { alpha2: "BS", alpha3: "BHS", numeric: "044" }, { alpha2: "BT", alpha3: "BTN", numeric: "064" }, { alpha2: "BV", alpha3: "BVT", numeric: "074" }, { alpha2: "BW", alpha3: "BWA", numeric: "072" }, { alpha2: "BY", alpha3: "BLR", numeric: "112" }, { alpha2: "BZ", alpha3: "BLZ", numeric: "084" }, { alpha2: "CA", alpha3: "CAN", numeric: "124" }, { alpha2: "CC", alpha3: "CCK", numeric: "166" }, { alpha2: "CD", alpha3: "COD", numeric: "180" }, { alpha2: "CF", alpha3: "CAF", numeric: "140" }, { alpha2: "CG", alpha3: "COG", numeric: "178" }, { alpha2: "CH", alpha3: "CHE", numeric: "756" }, { alpha2: "CI", alpha3: "CIV", numeric: "384" }, { alpha2: "CK", alpha3: "COK", numeric: "184" }, { alpha2: "CL", alpha3: "CHL", numeric: "152" }, { alpha2: "CM", alpha3: "CMR", numeric: "120" }, { alpha2: "CN", alpha3: "CHN", numeric: "156" }, { alpha2: "CO", alpha3: "COL", numeric: "170" }, { alpha2: "CR", alpha3: "CRI", numeric: "188" }, { alpha2: "CU", alpha3: "CUB", numeric: "192" }, { alpha2: "CV", alpha3: "CPV", numeric: "132" }, { alpha2: "CW", alpha3: "CUW", numeric: "531" }, { alpha2: "CX", alpha3: "CXR", numeric: "162" }, { alpha2: "CY", alpha3: "CYP", numeric: "196" }, { alpha2: "CZ", alpha3: "CZE", numeric: "203" }, { alpha2: "DE", alpha3: "DEU", numeric: "276" }, { alpha2: "DJ", alpha3: "DJI", numeric: "262" }, { alpha2: "DK", alpha3: "DNK", numeric: "208" }, { alpha2: "DM", alpha3: "DMA", numeric: "212" }, { alpha2: "DO", alpha3: "DOM", numeric: "214" }, { alpha2: "DZ", alpha3: "DZA", numeric: "012" }, { alpha2: "EC", alpha3: "ECU", numeric: "218" }, { alpha2: "EE", alpha3: "EST", numeric: "233" }, { alpha2: "EG", alpha3: "EGY", numeric: "818" }, { alpha2: "EH", alpha3: "ESH", numeric: "732" }, { alpha2: "ER", alpha3: "ERI", numeric: "232" }, { alpha2: "ES", alpha3: "ESP", numeric: "724" }, { alpha2: "ET", alpha3: "ETH", numeric: "231" }, { alpha2: "FI", alpha3: "FIN", numeric: "246" }, { alpha2: "FJ", alpha3: "FJI", numeric: "242" }, { alpha2: "FK", alpha3: "FLK", numeric: "238" }, { alpha2: "FM", alpha3: "FSM", numeric: "583" }, { alpha2: "FO", alpha3: "FRO", numeric: "234" }, { alpha2: "FR", alpha3: "FRA", numeric: "250" }, { alpha2: "GA", alpha3: "GAB", numeric: "266" }, { alpha2: "GB", alpha3: "GBR", numeric: "826" }, { alpha2: "GD", alpha3: "GRD", numeric: "308" }, { alpha2: "GE", alpha3: "GEO", numeric: "268" }, { alpha2: "GF", alpha3: "GUF", numeric: "254" }, { alpha2: "GG", alpha3: "GGY", numeric: "831" }, { alpha2: "GH", alpha3: "GHA", numeric: "288" }, { alpha2: "GI", alpha3: "GIB", numeric: "292" }, { alpha2: "GL", alpha3: "GRL", numeric: "304" }, { alpha2: "GM", alpha3: "GMB", numeric: "270" }, { alpha2: "GN", alpha3: "GIN", numeric: "324" }, { alpha2: "GP", alpha3: "GLP", numeric: "312" }, { alpha2: "GQ", alpha3: "GNQ", numeric: "226" }, { alpha2: "GR", alpha3: "GRC", numeric: "300" }, { alpha2: "GS", alpha3: "SGS", numeric: "239" }, { alpha2: "GT", alpha3: "GTM", numeric: "320" }, { alpha2: "GU", alpha3: "GUM", numeric: "316" }, { alpha2: "GW", alpha3: "GNB", numeric: "624" }, { alpha2: "GY", alpha3: "GUY", numeric: "328" }, { alpha2: "HK", alpha3: "HKG", numeric: "344" }, { alpha2: "HM", alpha3: "HMD", numeric: "334" }, { alpha2: "HN", alpha3: "HND", numeric: "340" }, { alpha2: "HR", alpha3: "HRV", numeric: "191" }, { alpha2: "HT", alpha3: "HTI", numeric: "332" }, { alpha2: "HU", alpha3: "HUN", numeric: "348" }, { alpha2: "ID", alpha3: "IDN", numeric: "360" }, { alpha2: "IE", alpha3: "IRL", numeric: "372" }, { alpha2: "IL", alpha3: "ISR", numeric: "376" }, { alpha2: "IM", alpha3: "IMN", numeric: "833" }, { alpha2: "IN", alpha3: "IND", numeric: "356" }, { alpha2: "IO", alpha3: "IOT", numeric: "086" }, { alpha2: "IQ", alpha3: "IRQ", numeric: "368" }, { alpha2: "IR", alpha3: "IRN", numeric: "364" }, { alpha2: "IS", alpha3: "ISL", numeric: "352" }, { alpha2: "IT", alpha3: "ITA", numeric: "380" }, { alpha2: "JE", alpha3: "JEY", numeric: "832" }, { alpha2: "JM", alpha3: "JAM", numeric: "388" }, { alpha2: "JO", alpha3: "JOR", numeric: "400" }, { alpha2: "JP", alpha3: "JPN", numeric: "392" }, { alpha2: "KE", alpha3: "KEN", numeric: "404" }, { alpha2: "KG", alpha3: "KGZ", numeric: "417" }, { alpha2: "KH", alpha3: "KHM", numeric: "116" }, { alpha2: "KI", alpha3: "KIR", numeric: "296" }, { alpha2: "KM", alpha3: "COM", numeric: "174" }, { alpha2: "KN", alpha3: "KNA", numeric: "659" }, { alpha2: "KP", alpha3: "PRK", numeric: "408" }, { alpha2: "KR", alpha3: "KOR", numeric: "410" }, { alpha2: "KW", alpha3: "KWT", numeric: "414" }, { alpha2: "KY", alpha3: "CYM", numeric: "136" }, { alpha2: "KZ", alpha3: "KAZ", numeric: "398" }, { alpha2: "LA", alpha3: "LAO", numeric: "418" }, { alpha2: "LB", alpha3: "LBN", numeric: "422" }, { alpha2: "LC", alpha3: "LCA", numeric: "662" }, { alpha2: "LI", alpha3: "LIE", numeric: "438" }, { alpha2: "LK", alpha3: "LKA", numeric: "144" }, { alpha2: "LR", alpha3: "LBR", numeric: "430" }, { alpha2: "LS", alpha3: "LSO", numeric: "426" }, { alpha2: "LT", alpha3: "LTU", numeric: "440" }, { alpha2: "LU", alpha3: "LUX", numeric: "442" }, { alpha2: "LV", alpha3: "LVA", numeric: "428" }, { alpha2: "LY", alpha3: "LBY", numeric: "434" }, { alpha2: "MA", alpha3: "MAR", numeric: "504" }, { alpha2: "MC", alpha3: "MCO", numeric: "492" }, { alpha2: "MD", alpha3: "MDA", numeric: "498" }, { alpha2: "ME", alpha3: "MNE", numeric: "499" }, { alpha2: "MF", alpha3: "MAF", numeric: "663" }, { alpha2: "MG", alpha3: "MDG", numeric: "450" }, { alpha2: "MH", alpha3: "MHL", numeric: "584" }, { alpha2: "MK", alpha3: "MKD", numeric: "807" }, { alpha2: "ML", alpha3: "MLI", numeric: "466" }, { alpha2: "MM", alpha3: "MMR", numeric: "104" }, { alpha2: "MN", alpha3: "MNG", numeric: "496" }, { alpha2: "MO", alpha3: "MAC", numeric: "446" }, { alpha2: "MP", alpha3: "MNP", numeric: "580" }, { alpha2: "MQ", alpha3: "MTQ", numeric: "474" }, { alpha2: "MR", alpha3: "MRT", numeric: "478" }, { alpha2: "MS", alpha3: "MSR", numeric: "500" }, { alpha2: "MT", alpha3: "MLT", numeric: "470" }, { alpha2: "MU", alpha3: "MUS", numeric: "480" }, { alpha2: "MV", alpha3: "MDV", numeric: "462" }, { alpha2: "MW", alpha3: "MWI", numeric: "454" }, { alpha2: "MX", alpha3: "MEX", numeric: "484" }, { alpha2: "MY", alpha3: "MYS", numeric: "458" }, { alpha2: "MZ", alpha3: "MOZ", numeric: "508" }, { alpha2: "NA", alpha3: "NAM", numeric: "516" }, { alpha2: "NC", alpha3: "NCL", numeric: "540" }, { alpha2: "NE", alpha3: "NER", numeric: "562" }, { alpha2: "NF", alpha3: "NFK", numeric: "574" }, { alpha2: "NG", alpha3: "NGA", numeric: "566" }, { alpha2: "NI", alpha3: "NIC", numeric: "558" }, { alpha2: "NL", alpha3: "NLD", numeric: "528" }, { alpha2: "NO", alpha3: "NOR", numeric: "578" }, { alpha2: "NP", alpha3: "NPL", numeric: "524" }, { alpha2: "NR", alpha3: "NRU", numeric: "520" }, { alpha2: "NU", alpha3: "NIU", numeric: "570" }, { alpha2: "NZ", alpha3: "NZL", numeric: "554" }, { alpha2: "OM", alpha3: "OMN", numeric: "512" }, { alpha2: "PA", alpha3: "PAN", numeric: "591" }, { alpha2: "PE", alpha3: "PER", numeric: "604" }, { alpha2: "PF", alpha3: "PYF", numeric: "258" }, { alpha2: "PG", alpha3: "PNG", numeric: "598" }, { alpha2: "PH", alpha3: "PHL", numeric: "608" }, { alpha2: "PK", alpha3: "PAK", numeric: "586" }, { alpha2: "PL", alpha3: "POL", numeric: "616" }, { alpha2: "PM", alpha3: "SPM", numeric: "666" }, { alpha2: "PN", alpha3: "PCN", numeric: "612" }, { alpha2: "PR", alpha3: "PRI", numeric: "630" }, { alpha2: "PS", alpha3: "PSE", numeric: "275" }, { alpha2: "PT", alpha3: "PRT", numeric: "620" }, { alpha2: "PW", alpha3: "PLW", numeric: "585" }, { alpha2: "PY", alpha3: "PRY", numeric: "600" }, { alpha2: "QA", alpha3: "QAT", numeric: "634" }, { alpha2: "RE", alpha3: "REU", numeric: "638" }, { alpha2: "RO", alpha3: "ROU", numeric: "642" }, { alpha2: "RS", alpha3: "SRB", numeric: "688" }, { alpha2: "RU", alpha3: "RUS", numeric: "643" }, { alpha2: "RW", alpha3: "RWA", numeric: "646" }, { alpha2: "SA", alpha3: "SAU", numeric: "682" }, { alpha2: "SB", alpha3: "SLB", numeric: "090" }, { alpha2: "SC", alpha3: "SYC", numeric: "690" }, { alpha2: "SD", alpha3: "SDN", numeric: "729" }, { alpha2: "SE", alpha3: "SWE", numeric: "752" }, { alpha2: "SG", alpha3: "SGP", numeric: "702" }, { alpha2: "SH", alpha3: "SHN", numeric: "654" }, { alpha2: "SI", alpha3: "SVN", numeric: "705" }, { alpha2: "SJ", alpha3: "SJM", numeric: "744" }, { alpha2: "SK", alpha3: "SVK", numeric: "703" }, { alpha2: "SL", alpha3: "SLE", numeric: "694" }, { alpha2: "SM", alpha3: "SMR", numeric: "674" }, { alpha2: "SN", alpha3: "SEN", numeric: "686" }, { alpha2: "SO", alpha3: "SOM", numeric: "706" }, { alpha2: "SR", alpha3: "SUR", numeric: "740" }, { alpha2: "SS", alpha3: "SSD", numeric: "728" }, { alpha2: "ST", alpha3: "STP", numeric: "678" }, { alpha2: "SV", alpha3: "SLV", numeric: "222" }, { alpha2: "SX", alpha3: "SXM", numeric: "534" }, { alpha2: "SY", alpha3: "SYR", numeric: "760" }, { alpha2: "SZ", alpha3: "SWZ", numeric: "748" }, { alpha2: "TC", alpha3: "TCA", numeric: "796" }, { alpha2: "TD", alpha3: "TCD", numeric: "148" }, { alpha2: "TF", alpha3: "ATF", numeric: "260" }, { alpha2: "TG", alpha3: "TGO", numeric: "768" }, { alpha2: "TH", alpha3: "THA", numeric: "764" }, { alpha2: "TJ", alpha3: "TJK", numeric: "762" }, { alpha2: "TK", alpha3: "TKL", numeric: "772" }, { alpha2: "TL", alpha3: "TLS", numeric: "626" }, { alpha2: "TM", alpha3: "TKM", numeric: "795" }, { alpha2: "TN", alpha3: "TUN", numeric: "788" }, { alpha2: "TO", alpha3: "TON", numeric: "776" }, { alpha2: "TR", alpha3: "TUR", numeric: "792" }, { alpha2: "TT", alpha3: "TTO", numeric: "780" }, { alpha2: "TV", alpha3: "TUV", numeric: "798" }, { alpha2: "TW", alpha3: "TWN", numeric: "158" }, { alpha2: "TZ", alpha3: "TZA", numeric: "834" }, { alpha2: "UA", alpha3: "UKR", numeric: "804" }, { alpha2: "UG", alpha3: "UGA", numeric: "800" }, { alpha2: "UM", alpha3: "UMI", numeric: "581" }, { alpha2: "US", alpha3: "USA", numeric: "840" }, { alpha2: "UY", alpha3: "URY", numeric: "858" }, { alpha2: "UZ", alpha3: "UZB", numeric: "860" }, { alpha2: "VA", alpha3: "VAT", numeric: "336" }, { alpha2: "VC", alpha3: "VCT", numeric: "670" }, { alpha2: "VE", alpha3: "VEN", numeric: "862" }, { alpha2: "VG", alpha3: "VGB", numeric: "092" }, { alpha2: "VI", alpha3: "VIR", numeric: "850" }, { alpha2: "VN", alpha3: "VNM", numeric: "704" }, { alpha2: "VU", alpha3: "VUT", numeric: "548" }, { alpha2: "WF", alpha3: "WLF", numeric: "876" }, { alpha2: "WS", alpha3: "WSM", numeric: "882" }, { alpha2: "YE", alpha3: "YEM", numeric: "887" }, { alpha2: "YT", alpha3: "MYT", numeric: "175" }, { alpha2: "ZA", alpha3: "ZAF", numeric: "710" }, { alpha2: "ZM", alpha3: "ZMB", numeric: "894" }, { alpha2: "ZW", alpha3: "ZWE", numeric: "716" }];
|
|
15532
|
+
var nt = { country_code: hr, time_zone: _ }, fr = nt;
|
|
15533
|
+
var it = { title: "Base", code: "base" }, br = it;
|
|
15534
|
+
var dr = ["/Applications", "/bin", "/boot", "/boot/defaults", "/dev", "/etc", "/etc/defaults", "/etc/mail", "/etc/namedb", "/etc/periodic", "/etc/ppp", "/home", "/home/user", "/home/user/dir", "/lib", "/Library", "/lost+found", "/media", "/mnt", "/net", "/Network", "/opt", "/opt/bin", "/opt/include", "/opt/lib", "/opt/sbin", "/opt/share", "/private", "/private/tmp", "/private/var", "/proc", "/rescue", "/root", "/sbin", "/selinux", "/srv", "/sys", "/System", "/tmp", "/Users", "/usr", "/usr/X11R6", "/usr/bin", "/usr/include", "/usr/lib", "/usr/libdata", "/usr/libexec", "/usr/local/bin", "/usr/local/src", "/usr/obj", "/usr/ports", "/usr/sbin", "/usr/share", "/usr/src", "/var", "/var/log", "/var/mail", "/var/spool", "/var/tmp", "/var/yp"];
|
|
15535
|
+
var gr = { "application/epub+zip": { extensions: ["epub"] }, "application/gzip": { extensions: ["gz"] }, "application/java-archive": { extensions: ["jar", "war", "ear"] }, "application/json": { extensions: ["json", "map"] }, "application/ld+json": { extensions: ["jsonld"] }, "application/msword": { extensions: ["doc", "dot"] }, "application/octet-stream": { extensions: ["bin", "dms", "lrf", "mar", "so", "dist", "distz", "pkg", "bpk", "dump", "elc", "deploy", "exe", "dll", "deb", "dmg", "iso", "img", "msi", "msp", "msm", "buffer"] }, "application/ogg": { extensions: ["ogx"] }, "application/pdf": { extensions: ["pdf"] }, "application/rtf": { extensions: ["rtf"] }, "application/vnd.amazon.ebook": { extensions: ["azw"] }, "application/vnd.apple.installer+xml": { extensions: ["mpkg"] }, "application/vnd.mozilla.xul+xml": { extensions: ["xul"] }, "application/vnd.ms-excel": { extensions: ["xls", "xlm", "xla", "xlc", "xlt", "xlw"] }, "application/vnd.ms-fontobject": { extensions: ["eot"] }, "application/vnd.ms-powerpoint": { extensions: ["ppt", "pps", "pot"] }, "application/vnd.oasis.opendocument.presentation": { extensions: ["odp"] }, "application/vnd.oasis.opendocument.spreadsheet": { extensions: ["ods"] }, "application/vnd.oasis.opendocument.text": { extensions: ["odt"] }, "application/vnd.openxmlformats-officedocument.presentationml.presentation": { extensions: ["pptx"] }, "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet": { extensions: ["xlsx"] }, "application/vnd.openxmlformats-officedocument.wordprocessingml.document": { extensions: ["docx"] }, "application/vnd.rar": { extensions: ["rar"] }, "application/vnd.visio": { extensions: ["vsd", "vst", "vss", "vsw"] }, "application/x-7z-compressed": { extensions: ["7z"] }, "application/x-abiword": { extensions: ["abw"] }, "application/x-bzip": { extensions: ["bz"] }, "application/x-bzip2": { extensions: ["bz2", "boz"] }, "application/x-csh": { extensions: ["csh"] }, "application/x-freearc": { extensions: ["arc"] }, "application/x-httpd-php": { extensions: ["php"] }, "application/x-sh": { extensions: ["sh"] }, "application/x-tar": { extensions: ["tar"] }, "application/xhtml+xml": { extensions: ["xhtml", "xht"] }, "application/xml": { extensions: ["xml", "xsl", "xsd", "rng"] }, "application/zip": { extensions: ["zip"] }, "audio/3gpp": { extensions: ["3gpp"] }, "audio/3gpp2": { extensions: ["3g2"] }, "audio/aac": { extensions: ["aac"] }, "audio/midi": { extensions: ["mid", "midi", "kar", "rmi"] }, "audio/mpeg": { extensions: ["mpga", "mp2", "mp2a", "mp3", "m2a", "m3a"] }, "audio/ogg": { extensions: ["oga", "ogg", "spx", "opus"] }, "audio/opus": { extensions: ["opus"] }, "audio/wav": { extensions: ["wav"] }, "audio/webm": { extensions: ["weba"] }, "font/otf": { extensions: ["otf"] }, "font/ttf": { extensions: ["ttf"] }, "font/woff": { extensions: ["woff"] }, "font/woff2": { extensions: ["woff2"] }, "image/avif": { extensions: ["avif"] }, "image/bmp": { extensions: ["bmp"] }, "image/gif": { extensions: ["gif"] }, "image/jpeg": { extensions: ["jpeg", "jpg", "jpe"] }, "image/png": { extensions: ["png"] }, "image/svg+xml": { extensions: ["svg", "svgz"] }, "image/tiff": { extensions: ["tif", "tiff"] }, "image/vnd.microsoft.icon": { extensions: ["ico"] }, "image/webp": { extensions: ["webp"] }, "text/calendar": { extensions: ["ics", "ifb"] }, "text/css": { extensions: ["css"] }, "text/csv": { extensions: ["csv"] }, "text/html": { extensions: ["html", "htm", "shtml"] }, "text/javascript": { extensions: ["js", "mjs"] }, "text/plain": { extensions: ["txt", "text", "conf", "def", "list", "log", "in", "ini"] }, "video/3gpp": { extensions: ["3gp", "3gpp"] }, "video/3gpp2": { extensions: ["3g2"] }, "video/mp2t": { extensions: ["ts"] }, "video/mp4": { extensions: ["mp4", "mp4v", "mpg4"] }, "video/mpeg": { extensions: ["mpeg", "mpg", "mpe", "m1v", "m2v"] }, "video/ogg": { extensions: ["ogv"] }, "video/webm": { extensions: ["webm"] }, "video/x-msvideo": { extensions: ["avi"] } };
|
|
15536
|
+
var ot = { directory_path: dr, mime_type: gr }, yr = ot;
|
|
15537
|
+
var st = { color: er, database: nr, date: ir, hacker: sr, internet: pr, location: fr, metadata: br, system: yr }, Oi = st;
|
|
15538
|
+
var f = new Qe({ locale: [ys, Oi] });
|
|
15512
15539
|
const byteToHex = [];
|
|
15513
15540
|
for (let i = 0; i < 256; ++i) {
|
|
15514
15541
|
byteToHex.push((i + 256).toString(16).slice(1));
|
|
@@ -19874,26 +19901,26 @@ var wblk = function(dat, out, final, syms, lf, df, eb, li, bs, bl, p2) {
|
|
|
19874
19901
|
};
|
|
19875
19902
|
var deo = /* @__PURE__ */ new i32([65540, 131080, 131088, 131104, 262176, 1048704, 1048832, 2114560, 2117632]);
|
|
19876
19903
|
var et = /* @__PURE__ */ new u8(0);
|
|
19877
|
-
var dflt = function(dat, lvl, plvl, pre, post,
|
|
19878
|
-
var s2 =
|
|
19904
|
+
var dflt = function(dat, lvl, plvl, pre, post, st2) {
|
|
19905
|
+
var s2 = st2.z || dat.length;
|
|
19879
19906
|
var o2 = new u8(pre + s2 + 5 * (1 + Math.ceil(s2 / 7e3)) + post);
|
|
19880
19907
|
var w2 = o2.subarray(pre, o2.length - post);
|
|
19881
|
-
var lst =
|
|
19882
|
-
var pos = (
|
|
19908
|
+
var lst = st2.l;
|
|
19909
|
+
var pos = (st2.r || 0) & 7;
|
|
19883
19910
|
if (lvl) {
|
|
19884
19911
|
if (pos)
|
|
19885
|
-
w2[0] =
|
|
19912
|
+
w2[0] = st2.r >> 3;
|
|
19886
19913
|
var opt = deo[lvl - 1];
|
|
19887
19914
|
var n2 = opt >> 13, c2 = opt & 8191;
|
|
19888
19915
|
var msk_1 = (1 << plvl) - 1;
|
|
19889
|
-
var prev =
|
|
19916
|
+
var prev = st2.p || new u16(32768), head = st2.h || new u16(msk_1 + 1);
|
|
19890
19917
|
var bs1_1 = Math.ceil(plvl / 3), bs2_1 = 2 * bs1_1;
|
|
19891
19918
|
var hsh = function(i2) {
|
|
19892
19919
|
return (dat[i2] ^ dat[i2 + 1] << bs1_1 ^ dat[i2 + 2] << bs2_1) & msk_1;
|
|
19893
19920
|
};
|
|
19894
19921
|
var syms = new i32(25e3);
|
|
19895
19922
|
var lf = new u16(288), df = new u16(32);
|
|
19896
|
-
var lc_1 = 0, eb = 0, i =
|
|
19923
|
+
var lc_1 = 0, eb = 0, i = st2.i || 0, li = 0, wi = st2.w || 0, bs = 0;
|
|
19897
19924
|
for (; i + 2 < s2; ++i) {
|
|
19898
19925
|
var hv = hsh(i);
|
|
19899
19926
|
var imod = i & 32767, pimod = head[hv];
|
|
@@ -19958,12 +19985,12 @@ var dflt = function(dat, lvl, plvl, pre, post, st) {
|
|
|
19958
19985
|
}
|
|
19959
19986
|
pos = wblk(dat, w2, lst, syms, lf, df, eb, li, bs, i - bs, pos);
|
|
19960
19987
|
if (!lst) {
|
|
19961
|
-
|
|
19988
|
+
st2.r = pos & 7 | w2[pos / 8 | 0] << 3;
|
|
19962
19989
|
pos -= 7;
|
|
19963
|
-
|
|
19990
|
+
st2.h = head, st2.p = prev, st2.i = i, st2.w = wi;
|
|
19964
19991
|
}
|
|
19965
19992
|
} else {
|
|
19966
|
-
for (var i =
|
|
19993
|
+
for (var i = st2.w || 0; i < s2 + lst; i += 65535) {
|
|
19967
19994
|
var e2 = i + 65535;
|
|
19968
19995
|
if (e2 >= s2) {
|
|
19969
19996
|
w2[pos / 8 | 0] = lst;
|
|
@@ -19971,7 +19998,7 @@ var dflt = function(dat, lvl, plvl, pre, post, st) {
|
|
|
19971
19998
|
}
|
|
19972
19999
|
pos = wfblk(w2, pos + 1, dat.subarray(i, e2));
|
|
19973
20000
|
}
|
|
19974
|
-
|
|
20001
|
+
st2.i = s2;
|
|
19975
20002
|
}
|
|
19976
20003
|
return slc(o2, 0, pre + shft(pos) + post);
|
|
19977
20004
|
};
|
|
@@ -19999,19 +20026,19 @@ var crc = function() {
|
|
|
19999
20026
|
}
|
|
20000
20027
|
};
|
|
20001
20028
|
};
|
|
20002
|
-
var dopt = function(dat, opt, pre, post,
|
|
20003
|
-
if (!
|
|
20004
|
-
|
|
20029
|
+
var dopt = function(dat, opt, pre, post, st2) {
|
|
20030
|
+
if (!st2) {
|
|
20031
|
+
st2 = { l: 1 };
|
|
20005
20032
|
if (opt.dictionary) {
|
|
20006
20033
|
var dict = opt.dictionary.subarray(-32768);
|
|
20007
20034
|
var newDat = new u8(dict.length + dat.length);
|
|
20008
20035
|
newDat.set(dict);
|
|
20009
20036
|
newDat.set(dat, dict.length);
|
|
20010
20037
|
dat = newDat;
|
|
20011
|
-
|
|
20038
|
+
st2.w = dict.length;
|
|
20012
20039
|
}
|
|
20013
20040
|
}
|
|
20014
|
-
return dflt(dat, opt.level == null ? 6 : opt.level, opt.mem == null ?
|
|
20041
|
+
return dflt(dat, opt.level == null ? 6 : opt.level, opt.mem == null ? st2.l ? Math.ceil(Math.max(8, Math.min(13, Math.log(dat.length))) * 1.5) : 20 : 12 + opt.mem, pre, post, st2);
|
|
20015
20042
|
};
|
|
20016
20043
|
var wbytes = function(d2, b2, v2) {
|
|
20017
20044
|
for (; v2; ++b2)
|