vendor/assets/javascripts/faker.js in fakerjs-rails-3.0.1.1 vs vendor/assets/javascripts/faker.js in fakerjs-rails-3.1.0

- old
+ new

@@ -2,14 +2,25 @@ // since we are requiring the top level of faker, load all locales by default var Faker = require('./lib'); var faker = new Faker({ locales: require('./lib/locales') }); module['exports'] = faker; },{"./lib":11,"./lib/locales":13}],2:[function(require,module,exports){ +/** + * + * @namespace faker.address + */ function Address (faker) { var f = faker.fake, Helpers = faker.helpers; + /** + * Generates random zipcode from format. If format is not specified, the + * locale's zip format is used. + * + * @method faker.address.zipCode + * @param {String} format + */ this.zipCode = function(format) { // if zip format is not specified, use the zip format defined for the locale if (typeof format === 'undefined') { var localeFormat = faker.definitions.address.postcode; if (typeof localeFormat === 'string') { @@ -19,34 +30,63 @@ } } return Helpers.replaceSymbols(format); } + /** + * Generates a random localized city name. The format string can contain any + * method provided by faker wrapped in `{{}}`, e.g. `{{name.firstName}}` in + * order to build the city name. + * + * If no format string is provided one of the following is randomly used: + * + * * `{{address.cityPrefix}} {{name.firstName}}{{address.citySuffix}}` + * * `{{address.cityPrefix}} {{name.firstName}}` + * * `{{name.firstName}}{{address.citySuffix}}` + * * `{{name.lastName}}{{address.citySuffix}}` + * + * @method faker.address.city + * @param {String} format + */ this.city = function (format) { var formats = [ - '{{address.cityPrefix}} {{name.firstName}} {{address.citySuffix}}', + '{{address.cityPrefix}} {{name.firstName}}{{address.citySuffix}}', '{{address.cityPrefix}} {{name.firstName}}', - '{{name.firstName}} {{address.citySuffix}}', - '{{name.lastName}} {{address.citySuffix}}' + '{{name.firstName}}{{address.citySuffix}}', + '{{name.lastName}}{{address.citySuffix}}' ]; if (typeof format !== "number") { format = faker.random.number(formats.length - 1); } return f(formats[format]); } + /** + * Return a random localized city prefix + * @method faker.address.cityPrefix + */ this.cityPrefix = function () { return faker.random.arrayElement(faker.definitions.address.city_prefix); } + /** + * Return a random localized city suffix + * + * @method faker.address.citySuffix + */ this.citySuffix = function () { return faker.random.arrayElement(faker.definitions.address.city_suffix); } + /** + * Returns a random localized street name + * + * @method faker.address.streetName + */ this.streetName = function () { var result; var suffix = faker.address.streetSuffix(); if (suffix !== "") { suffix = " " + suffix @@ -64,10 +104,16 @@ } // // TODO: change all these methods that accept a boolean to instead accept an options hash. // + /** + * Returns a random localized street address + * + * @method faker.address.streetAddress + * @param {Boolean} useFullAddress + */ this.streetAddress = function (useFullAddress) { if (useFullAddress === undefined) { useFullAddress = false; } var address = ""; switch (faker.random.number(2)) { case 0: @@ -81,51 +127,102 @@ break; } return useFullAddress ? (address + " " + faker.address.secondaryAddress()) : address; } + /** + * streetSuffix + * + * @method faker.address.streetSuffix + */ this.streetSuffix = function () { return faker.random.arrayElement(faker.definitions.address.street_suffix); } + /** + * streetPrefix + * + * @method faker.address.streetPrefix + */ this.streetPrefix = function () { return faker.random.arrayElement(faker.definitions.address.street_prefix); } + /** + * secondaryAddress + * + * @method faker.address.secondaryAddress + */ this.secondaryAddress = function () { return Helpers.replaceSymbolWithNumber(faker.random.arrayElement( [ 'Apt. ###', 'Suite ###' ] )); } + /** + * county + * + * @method faker.address.county + */ this.county = function () { return faker.random.arrayElement(faker.definitions.address.county); } + /** + * country + * + * @method faker.address.country + */ this.country = function () { return faker.random.arrayElement(faker.definitions.address.country); } + /** + * countryCode + * + * @method faker.address.countryCode + */ this.countryCode = function () { return faker.random.arrayElement(faker.definitions.address.country_code); } + /** + * state + * + * @method faker.address.state + * @param {Boolean} useAbbr + */ this.state = function (useAbbr) { return faker.random.arrayElement(faker.definitions.address.state); } + /** + * stateAbbr + * + * @method faker.address.stateAbbr + */ this.stateAbbr = function () { return faker.random.arrayElement(faker.definitions.address.state_abbr); } + /** + * latitude + * + * @method faker.address.latitude + */ this.latitude = function () { return (faker.random.number(180 * 10000) / 10000.0 - 90.0).toFixed(4); } + /** + * longitude + * + * @method faker.address.longitude + */ this.longitude = function () { return (faker.random.number(360 * 10000) / 10000.0 - 180.0).toFixed(4); } return this; @@ -133,55 +230,70 @@ module.exports = Address; },{}],3:[function(require,module,exports){ +/** + * + * @namespace faker.commerce + */ var Commerce = function (faker) { var self = this; + /** + * color + * + * @method faker.commerce.color + */ self.color = function() { return faker.random.arrayElement(faker.definitions.commerce.color); }; + /** + * department + * + * @method faker.commerce.department + * @param {number} max + * @param {number} fixedAmount + */ self.department = function(max, fixedAmount) { - return faker.random.arrayElement(faker.definitions.commerce.department); - /* - max = max || 3; - - var num = Math.floor((Math.random() * max) + 1); - if (fixedAmount) { - num = max; - } - - var categories = faker.commerce.categories(num); - - if(num > 1) { - return faker.commerce.mergeCategories(categories); - } - - return categories[0]; - */ }; + /** + * productName + * + * @method faker.commerce.productName + */ self.productName = function() { return faker.commerce.productAdjective() + " " + faker.commerce.productMaterial() + " " + faker.commerce.product(); }; + /** + * price + * + * @method faker.commerce.price + * @param {number} min + * @param {number} max + * @param {number} dec + * @param {string} symbol + */ self.price = function(min, max, dec, symbol) { min = min || 0; max = max || 1000; dec = dec || 2; symbol = symbol || ''; if(min < 0 || max < 0) { return symbol + 0.00; } - return symbol + (Math.round((Math.random() * (max - min) + min) * Math.pow(10, dec)) / Math.pow(10, dec)).toFixed(dec); + var randValue = faker.random.number({ max: max, min: min }); + + return symbol + (Math.round(randValue * Math.pow(10, dec)) / Math.pow(10, dec)).toFixed(dec); }; /* self.categories = function(num) { var categories = []; @@ -206,37 +318,68 @@ return [commaSeparated, categories[categories.length - 1]].join(separator + " "); }; */ + /** + * productAdjective + * + * @method faker.commerce.productAdjective + */ self.productAdjective = function() { return faker.random.arrayElement(faker.definitions.commerce.product_name.adjective); }; + /** + * productMaterial + * + * @method faker.commerce.productMaterial + */ self.productMaterial = function() { return faker.random.arrayElement(faker.definitions.commerce.product_name.material); }; + /** + * product + * + * @method faker.commerce.product + */ self.product = function() { return faker.random.arrayElement(faker.definitions.commerce.product_name.product); } return self; }; module['exports'] = Commerce; + },{}],4:[function(require,module,exports){ +/** + * + * @namespace faker.company + */ var Company = function (faker) { var self = this; var f = faker.fake; + /** + * suffixes + * + * @method faker.company.suffixes + */ this.suffixes = function () { // Don't want the source array exposed to modification, so return a copy return faker.definitions.company.suffix.slice(0); } + /** + * companyName + * + * @method faker.company.companyName + * @param {string} format + */ this.companyName = function (format) { var formats = [ '{{name.lastName}} {{company.companySuffix}}', '{{name.lastName}} - {{name.lastName}}', @@ -248,52 +391,108 @@ } return f(formats[format]); } + /** + * companySuffix + * + * @method faker.company.companySuffix + */ this.companySuffix = function () { return faker.random.arrayElement(faker.company.suffixes()); } + /** + * catchPhrase + * + * @method faker.company.catchPhrase + */ this.catchPhrase = function () { return f('{{company.catchPhraseAdjective}} {{company.catchPhraseDescriptor}} {{company.catchPhraseNoun}}') } + /** + * bs + * + * @method faker.company.bs + */ this.bs = function () { return f('{{company.bsAdjective}} {{company.bsBuzz}} {{company.bsNoun}}'); } + /** + * catchPhraseAdjective + * + * @method faker.company.catchPhraseAdjective + */ this.catchPhraseAdjective = function () { return faker.random.arrayElement(faker.definitions.company.adjective); } + /** + * catchPhraseDescriptor + * + * @method faker.company.catchPhraseDescriptor + */ this.catchPhraseDescriptor = function () { return faker.random.arrayElement(faker.definitions.company.descriptor); } + /** + * catchPhraseNoun + * + * @method faker.company.catchPhraseNoun + */ this.catchPhraseNoun = function () { return faker.random.arrayElement(faker.definitions.company.noun); } + /** + * bsAdjective + * + * @method faker.company.bsAdjective + */ this.bsAdjective = function () { return faker.random.arrayElement(faker.definitions.company.bs_adjective); } + /** + * bsBuzz + * + * @method faker.company.bsBuzz + */ this.bsBuzz = function () { return faker.random.arrayElement(faker.definitions.company.bs_verb); } + /** + * bsNoun + * + * @method faker.company.bsNoun + */ this.bsNoun = function () { return faker.random.arrayElement(faker.definitions.company.bs_noun); } } module['exports'] = Company; },{}],5:[function(require,module,exports){ +/** + * + * @namespace faker.date + */ var _Date = function (faker) { var self = this; + /** + * past + * + * @method faker.date.past + * @param {number} years + * @param {date} refDate + */ self.past = function (years, refDate) { var date = (refDate) ? new Date(Date.parse(refDate)) : new Date(); var range = { min: 1000, max: (years || 1) * 365 * 24 * 3600 * 1000 @@ -304,10 +503,17 @@ date.setTime(past); return date; }; + /** + * future + * + * @method faker.date.future + * @param {number} years + * @param {date} refDate + */ self.future = function (years, refDate) { var date = (refDate) ? new Date(Date.parse(refDate)) : new Date(); var range = { min: 1000, max: (years || 1) * 365 * 24 * 3600 * 1000 @@ -318,19 +524,32 @@ date.setTime(future); return date; }; + /** + * between + * + * @method faker.date.between + * @param {date} from + * @param {date} to + */ self.between = function (from, to) { var fromMilli = Date.parse(from); var dateOffset = faker.random.number(Date.parse(to) - fromMilli); var newDate = new Date(fromMilli + dateOffset); return newDate; }; + /** + * recent + * + * @method faker.date.recent + * @param {number} days + */ self.recent = function (days) { var date = new Date(); var range = { min: 1000, max: (days || 1) * 24 * 3600 * 1000 @@ -341,10 +560,16 @@ date.setTime(future); return date; }; + /** + * month + * + * @method faker.date.month + * @param {object} options + */ self.month = function (options) { options = options || {}; var type = 'wide'; if (options.abbr) { @@ -357,10 +582,16 @@ var source = faker.definitions.date.month[type]; return faker.random.arrayElement(source); }; + /** + * weekday + * + * @param {object} options + * @method faker.date.weekday + */ self.weekday = function (options) { options = options || {}; var type = 'wide'; if (options.abbr) { @@ -386,10 +617,27 @@ */ function Fake (faker) { + /** + * Generator method for combining faker methods based on string input + * + * __Example:__ + * + * ``` + * console.log(faker.fake('{{name.lastName}}, {{name.firstName}} {{name.suffix}}')); + * //outputs: "Marks, Dean Sr." + * ``` + * + * This will interpolate the format string with the value of methods + * [name.lastName]{@link faker.name.lastName}, [name.firstName]{@link faker.name.firstName}, + * and [name.suffix]{@link faker.name.suffix} + * + * @method faker.fake + * @param {string} str + */ this.fake = function fake (str) { // setup default response as empty string var res = ''; // if incoming str parameter is not provided, return error message @@ -409,16 +657,24 @@ // console.log('attempting to parse', str); // extract method name from between the {{ }} that we found // for example: {{name.firstName}} - var method = str.substr(start + 2, end - start - 2); - method = method.replace('}}', ''); - method = method.replace('{{', ''); + var token = str.substr(start + 2, end - start - 2); + var method = token.replace('}}', '').replace('{{', ''); // console.log('method', method) + // extract method parameters + var regExp = /\(([^)]+)\)/; + var matches = regExp.exec(method); + var parameters = ''; + if (matches) { + method = method.replace(regExp, ''); + parameters = matches[1]; + } + // split the method into module and function var parts = method.split('.'); if (typeof faker[parts[0]] === "undefined") { throw new Error('Invalid module: ' + parts[0]); @@ -429,12 +685,32 @@ } // assign the function from the module.function namespace var fn = faker[parts[0]][parts[1]]; + // If parameters are populated here, they are always going to be of string type + // since we might actually be dealing with an object or array, + // we always attempt to the parse the incoming parameters into JSON + var params; + // Note: we experience a small performance hit here due to JSON.parse try / catch + // If anyone actually needs to optimize this specific code path, please open a support issue on github + try { + params = JSON.parse(parameters) + } catch (err) { + // since JSON.parse threw an error, assume parameters was actually a string + params = parameters; + } + + var result; + if (typeof params === "string" && params.length === 0) { + result = fn.call(this); + } else { + result = fn.call(this, params); + } + // replace the found tag with the returned fake value - res = str.replace('{{' + method + '}}', fn()); + res = str.replace('{{' + token + '}}', result); // return the response recursively until we are done finding all tags return fake(res); } @@ -443,14 +719,24 @@ } module['exports'] = Fake; },{}],7:[function(require,module,exports){ +/** + * + * @namespace faker.finance + */ var Finance = function (faker) { var Helpers = faker.helpers, self = this; + /** + * account + * + * @method faker.finance.account + * @param {number} length + */ self.account = function (length) { length = length || 8; var template = ''; @@ -460,15 +746,28 @@ } length = null; return Helpers.replaceSymbolWithNumber(template); } + /** + * accountName + * + * @method faker.finance.accountName + */ self.accountName = function () { return [Helpers.randomize(faker.definitions.finance.account_type), 'Account'].join(' '); } + /** + * mask + * + * @method faker.finance.mask + * @param {number} length + * @param {boolean} parens + * @param {boolean} elipsis + */ self.mask = function (length, parens, elipsis) { //set defaults length = (length == 0 || !length || typeof length == 'undefined') ? 4 : length; @@ -495,76 +794,157 @@ } //min and max take in minimum and maximum amounts, dec is the decimal place you want rounded to, symbol is $, €, £, etc //NOTE: this returns a string representation of the value, if you want a number use parseFloat and no symbol + /** + * amount + * + * @method faker.finance.amount + * @param {number} min + * @param {number} max + * @param {number} dec + * @param {string} symbol + */ self.amount = function (min, max, dec, symbol) { min = min || 0; max = max || 1000; dec = dec || 2; symbol = symbol || ''; + var randValue = faker.random.number({ max: max, min: min }); - return symbol + (Math.round((Math.random() * (max - min) + min) * Math.pow(10, dec)) / Math.pow(10, dec)).toFixed(dec); + return symbol + (Math.round(randValue * Math.pow(10, dec)) / Math.pow(10, dec)).toFixed(dec); } + /** + * transactionType + * + * @method faker.finance.transactionType + */ self.transactionType = function () { return Helpers.randomize(faker.definitions.finance.transaction_type); } + /** + * currencyCode + * + * @method faker.finance.currencyCode + */ self.currencyCode = function () { return faker.random.objectElement(faker.definitions.finance.currency)['code']; } + /** + * currencyName + * + * @method faker.finance.currencyName + */ self.currencyName = function () { return faker.random.objectElement(faker.definitions.finance.currency, 'key'); } + /** + * currencySymbol + * + * @method faker.finance.currencySymbol + */ self.currencySymbol = function () { var symbol; while (!symbol) { symbol = faker.random.objectElement(faker.definitions.finance.currency)['symbol']; } return symbol; } + + /** + * bitcoinAddress + * + * @method faker.finance.bitcoinAddress + */ + self.bitcoinAddress = function () { + var addressLength = faker.random.number({ min: 27, max: 34 }); + + var address = faker.random.arrayElement(['1', '3']); + + for (var i = 0; i < addressLength - 1; i++) + address += faker.random.alphaNumeric().toUpperCase(); + + return address; + } } module['exports'] = Finance; + },{}],8:[function(require,module,exports){ +/** + * + * @namespace faker.hacker + */ var Hacker = function (faker) { var self = this; + /** + * abbreviation + * + * @method faker.hacker.abbreviation + */ self.abbreviation = function () { return faker.random.arrayElement(faker.definitions.hacker.abbreviation); }; + /** + * adjective + * + * @method faker.hacker.adjective + */ self.adjective = function () { return faker.random.arrayElement(faker.definitions.hacker.adjective); }; + /** + * noun + * + * @method faker.hacker.noun + */ self.noun = function () { return faker.random.arrayElement(faker.definitions.hacker.noun); }; + /** + * verb + * + * @method faker.hacker.verb + */ self.verb = function () { return faker.random.arrayElement(faker.definitions.hacker.verb); }; + /** + * ingverb + * + * @method faker.hacker.ingverb + */ self.ingverb = function () { return faker.random.arrayElement(faker.definitions.hacker.ingverb); }; + /** + * phrase + * + * @method faker.hacker.phrase + */ self.phrase = function () { var data = { - abbreviation: self.abbreviation(), - adjective: self.adjective(), - ingverb: self.ingverb(), - noun: self.noun(), - verb: self.verb() + abbreviation: self.abbreviation, + adjective: self.adjective, + ingverb: self.ingverb, + noun: self.noun, + verb: self.verb }; var phrase = faker.random.arrayElement([ "If we {{verb}} the {{noun}}, we can get to the {{abbreviation}} {{noun}} through the {{adjective}} {{abbreviation}} {{noun}}!", "We need to {{verb}} the {{adjective}} {{abbreviation}} {{noun}}!", "Try to {{verb}} the {{abbreviation}} {{noun}}, maybe it will {{verb}} the {{adjective}} {{noun}}!", @@ -582,27 +962,47 @@ return self; }; module['exports'] = Hacker; },{}],9:[function(require,module,exports){ +/** + * + * @namespace faker.helpers + */ var Helpers = function (faker) { var self = this; - // backword-compatibility + /** + * backword-compatibility + * + * @method faker.helpers.randomize + * @param {array} array + */ self.randomize = function (array) { array = array || ["a", "b", "c"]; return faker.random.arrayElement(array); }; - // slugifies string + /** + * slugifies string + * + * @method faker.helpers.slugify + * @param {string} string + */ self.slugify = function (string) { string = string || ""; return string.replace(/ /g, '-').replace(/[^\w\.\-]+/g, ''); }; - // parses string for a symbol and replace it with a random number from 1-10 + /** + * parses string for a symbol and replace it with a random number from 1-10 + * + * @method faker.helpers.replaceSymbolWithNumber + * @param {string} string + * @param {string} symbol defaults to `"#"` + */ self.replaceSymbolWithNumber = function (string, symbol) { string = string || ""; // default symbol is '#' if (symbol === undefined) { symbol = '#'; @@ -617,35 +1017,52 @@ } } return str; }; - // parses string for symbols (numbers or letters) and replaces them appropriately + /** + * parses string for symbols (numbers or letters) and replaces them appropriately + * + * @method faker.helpers.replaceSymbols + * @param {string} string + */ self.replaceSymbols = function (string) { string = string || ""; var 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'] var str = ''; for (var i = 0; i < string.length; i++) { if (string.charAt(i) == "#") { str += faker.random.number(9); } else if (string.charAt(i) == "?") { - str += alpha[Math.floor(Math.random() * alpha.length)]; + str += faker.random.arrayElement(alpha); } else { str += string.charAt(i); } } return str; }; - // takes an array and returns it randomized + /** + * takes an array and returns it randomized + * + * @method faker.helpers.shuffle + * @param {array} o + */ self.shuffle = function (o) { o = o || ["a", "b", "c"]; for (var j, x, i = o.length-1; i; j = faker.random.number(i), x = o[--i], o[i] = o[j], o[j] = x); return o; }; + /** + * mustache + * + * @method faker.helpers.mustache + * @param {string} str + * @param {object} data + */ self.mustache = function (str, data) { if (typeof str === 'undefined') { return ''; } for(var p in data) { @@ -653,10 +1070,15 @@ str = str.replace(re, data[p]); } return str; }; + /** + * createCard + * + * @method faker.helpers.createCard + */ self.createCard = function () { return { "name": faker.name.findName(), "username": faker.internet.userName(), "email": faker.internet.email(), @@ -703,10 +1125,15 @@ ], "accountHistory": [faker.helpers.createTransaction(), faker.helpers.createTransaction(), faker.helpers.createTransaction()] }; }; + /** + * contextualCard + * + * @method faker.helpers.contextualCard + */ self.contextualCard = function () { var name = faker.name.firstName(), userName = faker.internet.userName(name); return { "name": name, @@ -733,10 +1160,15 @@ } }; }; + /** + * userCard + * + * @method faker.helpers.userCard + */ self.userCard = function () { return { "name": faker.name.findName(), "username": faker.internet.userName(), "email": faker.internet.email(), @@ -758,23 +1190,28 @@ "bs": faker.company.bs() } }; }; + /** + * createTransaction + * + * @method faker.helpers.createTransaction + */ self.createTransaction = function(){ return { "amount" : faker.finance.amount(), "date" : new Date(2012, 1, 2), //TODO: add a ranged date method "business": faker.company.companyName(), "name": [faker.finance.accountName(), faker.finance.mask()].join(' '), "type" : self.randomize(faker.definitions.finance.transaction_type), "account" : faker.finance.account() }; }; - + return self; - + }; /* String.prototype.capitalize = function () { //v1.0 @@ -783,70 +1220,206 @@ }); }; */ module['exports'] = Helpers; + },{}],10:[function(require,module,exports){ +/** + * + * @namespace faker.image + */ var Image = function (faker) { var self = this; - self.image = function () { + /** + * image + * + * @param {number} width + * @param {number} height + * @param {boolean} randomize + * @method faker.image.image + */ + self.image = function (width, height, randomize) { var categories = ["abstract", "animals", "business", "cats", "city", "food", "nightlife", "fashion", "people", "nature", "sports", "technics", "transport"]; - return self[faker.random.arrayElement(categories)](); + return self[faker.random.arrayElement(categories)](width, height, randomize); }; + /** + * avatar + * + * @method faker.image.avatar + */ self.avatar = function () { return faker.internet.avatar(); }; - self.imageUrl = function (width, height, category) { + /** + * imageUrl + * + * @param {number} width + * @param {number} height + * @param {string} category + * @param {boolean} randomize + * @method faker.image.imageUrl + */ + self.imageUrl = function (width, height, category, randomize) { var width = width || 640; var height = height || 480; var url ='http://lorempixel.com/' + width + '/' + height; if (typeof category !== 'undefined') { url += '/' + category; } + + if (randomize) { + url += '?' + faker.random.number() + } + return url; }; - self.abstract = function (width, height) { - return faker.image.imageUrl(width, height, 'abstract'); + /** + * abstract + * + * @param {number} width + * @param {number} height + * @param {boolean} randomize + * @method faker.image.abstract + */ + self.abstract = function (width, height, randomize) { + return faker.image.imageUrl(width, height, 'abstract', randomize); }; - self.animals = function (width, height) { - return faker.image.imageUrl(width, height, 'animals'); + /** + * animals + * + * @param {number} width + * @param {number} height + * @param {boolean} randomize + * @method faker.image.animals + */ + self.animals = function (width, height, randomize) { + return faker.image.imageUrl(width, height, 'animals', randomize); }; - self.business = function (width, height) { - return faker.image.imageUrl(width, height, 'business'); + /** + * business + * + * @param {number} width + * @param {number} height + * @param {boolean} randomize + * @method faker.image.business + */ + self.business = function (width, height, randomize) { + return faker.image.imageUrl(width, height, 'business', randomize); }; - self.cats = function (width, height) { - return faker.image.imageUrl(width, height, 'cats'); + /** + * cats + * + * @param {number} width + * @param {number} height + * @param {boolean} randomize + * @method faker.image.cats + */ + self.cats = function (width, height, randomize) { + return faker.image.imageUrl(width, height, 'cats', randomize); }; - self.city = function (width, height) { - return faker.image.imageUrl(width, height, 'city'); + /** + * city + * + * @param {number} width + * @param {number} height + * @param {boolean} randomize + * @method faker.image.city + */ + self.city = function (width, height, randomize) { + return faker.image.imageUrl(width, height, 'city', randomize); }; - self.food = function (width, height) { - return faker.image.imageUrl(width, height, 'food'); + /** + * food + * + * @param {number} width + * @param {number} height + * @param {boolean} randomize + * @method faker.image.food + */ + self.food = function (width, height, randomize) { + return faker.image.imageUrl(width, height, 'food', randomize); }; - self.nightlife = function (width, height) { - return faker.image.imageUrl(width, height, 'nightlife'); + /** + * nightlife + * + * @param {number} width + * @param {number} height + * @param {boolean} randomize + * @method faker.image.nightlife + */ + self.nightlife = function (width, height, randomize) { + return faker.image.imageUrl(width, height, 'nightlife', randomize); }; - self.fashion = function (width, height) { - return faker.image.imageUrl(width, height, 'fashion'); + /** + * fashion + * + * @param {number} width + * @param {number} height + * @param {boolean} randomize + * @method faker.image.fashion + */ + self.fashion = function (width, height, randomize) { + return faker.image.imageUrl(width, height, 'fashion', randomize); }; - self.people = function (width, height) { - return faker.image.imageUrl(width, height, 'people'); + /** + * people + * + * @param {number} width + * @param {number} height + * @param {boolean} randomize + * @method faker.image.people + */ + self.people = function (width, height, randomize) { + return faker.image.imageUrl(width, height, 'people', randomize); }; - self.nature = function (width, height) { - return faker.image.imageUrl(width, height, 'nature'); + /** + * nature + * + * @param {number} width + * @param {number} height + * @param {boolean} randomize + * @method faker.image.nature + */ + self.nature = function (width, height, randomize) { + return faker.image.imageUrl(width, height, 'nature', randomize); }; - self.sports = function (width, height) { - return faker.image.imageUrl(width, height, 'sports'); + /** + * sports + * + * @param {number} width + * @param {number} height + * @param {boolean} randomize + * @method faker.image.sports + */ + self.sports = function (width, height, randomize) { + return faker.image.imageUrl(width, height, 'sports', randomize); }; - self.technics = function (width, height) { - return faker.image.imageUrl(width, height, 'technics'); + /** + * technics + * + * @param {number} width + * @param {number} height + * @param {boolean} randomize + * @method faker.image.technics + */ + self.technics = function (width, height, randomize) { + return faker.image.imageUrl(width, height, 'technics', randomize); }; - self.transport = function (width, height) { - return faker.image.imageUrl(width, height, 'transport'); + /** + * transport + * + * @param {number} width + * @param {number} height + * @param {boolean} randomize + * @method faker.image.transport + */ + self.transport = function (width, height, randomize) { + return faker.image.imageUrl(width, height, 'transport', randomize); } } module["exports"] = Image; },{}],11:[function(require,module,exports){ @@ -867,10 +1440,14 @@ if you plan on modifying the faker library you should be performing your changes in the /lib/ directory */ +/** + * + * @namespace faker + */ function Faker (opts) { var self = this; opts = opts || {}; @@ -928,22 +1505,24 @@ self.date = new _Date(self); var Commerce = require('./commerce'); self.commerce = new Commerce(self); - // TODO: fix self.commerce = require('./commerce'); + var System = require('./system'); + self.system = new System(self); var _definitions = { "name": ["first_name", "last_name", "prefix", "suffix", "title", "male_first_name", "female_first_name", "male_middle_name", "female_middle_name", "male_last_name", "female_last_name"], "address": ["city_prefix", "city_suffix", "street_suffix", "county", "country", "country_code", "state", "state_abbr", "street_prefix", "postcode"], "company": ["adjective", "noun", "descriptor", "bs_adjective", "bs_noun", "bs_verb", "suffix"], "lorem": ["words"], "hacker": ["abbreviation", "adjective", "noun", "verb", "ingverb"], "phone_number": ["formats"], "finance": ["account_type", "transaction_type", "currency"], - "internet": ["avatar_uri", "domain_suffix", "free_email", "password"], + "internet": ["avatar_uri", "domain_suffix", "free_email", "example_email", "password"], "commerce": ["color", "department", "product_name", "price", "categories"], + "system": ["mimeTypes"], "date": ["month", "weekday"], "title": "", "separator": "" }; @@ -982,25 +1561,87 @@ this.seedValue = value; this.random = new Random(this, this.seedValue); } module['exports'] = Faker; -},{"./address":2,"./commerce":3,"./company":4,"./date":5,"./fake":6,"./finance":7,"./hacker":8,"./helpers":9,"./image":10,"./internet":12,"./lorem":911,"./name":912,"./phone_number":913,"./random":914}],12:[function(require,module,exports){ +},{"./address":2,"./commerce":3,"./company":4,"./date":5,"./fake":6,"./finance":7,"./hacker":8,"./helpers":9,"./image":10,"./internet":12,"./lorem":954,"./name":955,"./phone_number":956,"./random":957,"./system":958}],12:[function(require,module,exports){ var password_generator = require('../vendor/password-generator.js'), random_ua = require('../vendor/user-agent'); +/** + * + * @namespace faker.internet + */ var Internet = function (faker) { var self = this; + /** + * avatar + * + * @method faker.internet.avatar + */ self.avatar = function () { return faker.random.arrayElement(faker.definitions.internet.avatar_uri); }; + self.avatar.schema = { + "description": "Generates a URL for an avatar.", + "sampleResults": ["https://s3.amazonaws.com/uifaces/faces/twitter/igorgarybaldi/128.jpg"] + }; + + /** + * email + * + * @method faker.internet.email + * @param {string} firstName + * @param {string} lastName + * @param {string} provider + */ self.email = function (firstName, lastName, provider) { provider = provider || faker.random.arrayElement(faker.definitions.internet.free_email); return faker.helpers.slugify(faker.internet.userName(firstName, lastName)) + "@" + provider; }; + self.email.schema = { + "description": "Generates a valid email address based on optional input criteria", + "sampleResults": ["foo.bar@gmail.com"], + "properties": { + "firstName": { + "type": "string", + "required": false, + "description": "The first name of the user" + }, + "lastName": { + "type": "string", + "required": false, + "description": "The last name of the user" + }, + "provider": { + "type": "string", + "required": false, + "description": "The domain of the user" + } + } + }; + /** + * exampleEmail + * + * @method faker.internet.exampleEmail + * @param {string} firstName + * @param {string} lastName + */ + self.exampleEmail = function (firstName, lastName) { + var provider = faker.random.arrayElement(faker.definitions.internet.example_email); + return self.email(firstName, lastName, provider); + }; + + /** + * userName + * + * @method faker.internet.userName + * @param {string} firstName + * @param {string} lastName + */ self.userName = function (firstName, lastName) { var result; firstName = firstName || faker.name.firstName(); lastName = lastName || faker.name.lastName(); switch (faker.random.number(2)) { @@ -1017,31 +1658,112 @@ result = result.toString().replace(/'/g, ""); result = result.replace(/ /g, ""); return result; }; + self.userName.schema = { + "description": "Generates a username based on one of several patterns. The pattern is chosen randomly.", + "sampleResults": [ + "Kirstin39", + "Kirstin.Smith", + "Kirstin.Smith39", + "KirstinSmith", + "KirstinSmith39", + ], + "properties": { + "firstName": { + "type": "string", + "required": false, + "description": "The first name of the user" + }, + "lastName": { + "type": "string", + "required": false, + "description": "The last name of the user" + } + } + }; + + /** + * protocol + * + * @method faker.internet.protocol + */ self.protocol = function () { var protocols = ['http','https']; return faker.random.arrayElement(protocols); }; + self.protocol.schema = { + "description": "Randomly generates http or https", + "sampleResults": ["https", "http"] + }; + + /** + * url + * + * @method faker.internet.url + */ self.url = function () { return faker.internet.protocol() + '://' + faker.internet.domainName(); }; + self.url.schema = { + "description": "Generates a random URL. The URL could be secure or insecure.", + "sampleResults": [ + "http://rashawn.name", + "https://rashawn.name" + ] + }; + + /** + * domainName + * + * @method faker.internet.domainName + */ self.domainName = function () { return faker.internet.domainWord() + "." + faker.internet.domainSuffix(); }; + self.domainName.schema = { + "description": "Generates a random domain name.", + "sampleResults": ["marvin.org"] + }; + + /** + * domainSuffix + * + * @method faker.internet.domainSuffix + */ self.domainSuffix = function () { return faker.random.arrayElement(faker.definitions.internet.domain_suffix); }; + self.domainSuffix.schema = { + "description": "Generates a random domain suffix.", + "sampleResults": ["net"] + }; + + /** + * domainWord + * + * @method faker.internet.domainWord + */ self.domainWord = function () { - return faker.name.firstName().replace(/([\\~#&*{}/:<>?|\"])/ig, '').toLowerCase(); + return faker.name.firstName().replace(/([\\~#&*{}/:<>?|\"'])/ig, '').toLowerCase(); }; + self.domainWord.schema = { + "description": "Generates a random domain word.", + "sampleResults": ["alyce"] + }; + + /** + * ip + * + * @method faker.internet.ip + */ self.ip = function () { var randNum = function () { return (faker.random.number(255)).toFixed(0); }; @@ -1051,14 +1773,37 @@ } return result.join("."); }; + self.ip.schema = { + "description": "Generates a random IP.", + "sampleResults": ["97.238.241.11"] + }; + + /** + * userAgent + * + * @method faker.internet.userAgent + */ self.userAgent = function () { return random_ua.generate(); }; + self.userAgent.schema = { + "description": "Generates a random user agent.", + "sampleResults": ["Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_7_5 rv:6.0; SL) AppleWebKit/532.0.1 (KHTML, like Gecko) Version/7.1.6 Safari/532.0.1"] + }; + + /** + * color + * + * @method faker.internet.color + * @param {number} baseRed255 + * @param {number} baseGreen255 + * @param {number} baseBlue255 + */ self.color = function (baseRed255, baseGreen255, baseBlue255) { baseRed255 = baseRed255 || 0; baseGreen255 = baseGreen255 || 0; baseBlue255 = baseBlue255 || 0; // based on awesome response : http://stackoverflow.com/questions/43044/algorithm-to-randomly-generate-an-aesthetically-pleasing-color-palette @@ -1073,35 +1818,106 @@ (greenStr.length === 1 ? '0' : '') + greenStr + (blueStr.length === 1 ? '0': '') + blueStr; }; + self.color.schema = { + "description": "Generates a random hexadecimal color.", + "sampleResults": ["#06267f"], + "properties": { + "baseRed255": { + "type": "number", + "required": false, + "description": "The red value. Valid values are 0 - 255." + }, + "baseGreen255": { + "type": "number", + "required": false, + "description": "The green value. Valid values are 0 - 255." + }, + "baseBlue255": { + "type": "number", + "required": false, + "description": "The blue value. Valid values are 0 - 255." + } + } + }; + + /** + * mac + * + * @method faker.internet.mac + */ self.mac = function(){ var i, mac = ""; for (i=0; i < 12; i++) { - mac+= parseInt(Math.random()*16).toString(16); + mac+= faker.random.number(15).toString(16); if (i%2==1 && i != 11) { mac+=":"; } } return mac; }; + self.mac.schema = { + "description": "Generates a random mac address.", + "sampleResults": ["78:06:cc:ae:b3:81"] + }; + + /** + * password + * + * @method faker.internet.password + * @param {number} len + * @param {boolean} memorable + * @param {string} pattern + * @param {string} prefix + */ self.password = function (len, memorable, pattern, prefix) { len = len || 15; if (typeof memorable === "undefined") { memorable = false; } return password_generator(len, memorable, pattern, prefix); } - + + self.password.schema = { + "description": "Generates a random password.", + "sampleResults": [ + "AM7zl6Mg", + "susejofe" + ], + "properties": { + "length": { + "type": "number", + "required": false, + "description": "The number of characters in the password." + }, + "memorable": { + "type": "boolean", + "required": false, + "description": "Whether a password should be easy to remember." + }, + "pattern": { + "type": "regex", + "required": false, + "description": "A regex to match each character of the password against. This parameter will be negated if the memorable setting is turned on." + }, + "prefix": { + "type": "string", + "required": false, + "description": "A value to prepend to the generated password. The prefix counts towards the length of the password." + } + } + }; + }; module["exports"] = Internet; -},{"../vendor/password-generator.js":916,"../vendor/user-agent":917}],13:[function(require,module,exports){ +},{"../vendor/password-generator.js":960,"../vendor/user-agent":961}],13:[function(require,module,exports){ exports['de'] = require('./locales/de'); exports['de_AT'] = require('./locales/de_AT'); exports['de_CH'] = require('./locales/de_CH'); exports['en'] = require('./locales/en'); exports['en_AU'] = require('./locales/en_AU'); @@ -1116,10 +1932,11 @@ exports['es_MX'] = require('./locales/es_MX'); exports['fa'] = require('./locales/fa'); exports['fr'] = require('./locales/fr'); exports['fr_CA'] = require('./locales/fr_CA'); exports['ge'] = require('./locales/ge'); +exports['id_ID'] = require('./locales/id_ID'); exports['it'] = require('./locales/it'); exports['ja'] = require('./locales/ja'); exports['ko'] = require('./locales/ko'); exports['nb_NO'] = require('./locales/nb_NO'); exports['nep'] = require('./locales/nep'); @@ -1133,11 +1950,11 @@ exports['uk'] = require('./locales/uk'); exports['vi'] = require('./locales/vi'); exports['zh_CN'] = require('./locales/zh_CN'); exports['zh_TW'] = require('./locales/zh_TW'); -},{"./locales/de":34,"./locales/de_AT":67,"./locales/de_CH":86,"./locales/en":156,"./locales/en_AU":185,"./locales/en_BORK":193,"./locales/en_CA":201,"./locales/en_GB":213,"./locales/en_IE":223,"./locales/en_IND":235,"./locales/en_US":247,"./locales/en_au_ocker":267,"./locales/es":299,"./locales/es_MX":343,"./locales/fa":362,"./locales/fr":388,"./locales/fr_CA":408,"./locales/ge":434,"./locales/it":469,"./locales/ja":491,"./locales/ko":512,"./locales/nb_NO":542,"./locales/nep":562,"./locales/nl":586,"./locales/pl":626,"./locales/pt_BR":655,"./locales/ru":692,"./locales/sk":732,"./locales/sv":776,"./locales/tr":802,"./locales/uk":835,"./locales/vi":862,"./locales/zh_CN":885,"./locales/zh_TW":904}],14:[function(require,module,exports){ +},{"./locales/de":34,"./locales/de_AT":67,"./locales/de_CH":86,"./locales/en":161,"./locales/en_AU":193,"./locales/en_BORK":201,"./locales/en_CA":209,"./locales/en_GB":222,"./locales/en_IE":232,"./locales/en_IND":244,"./locales/en_US":256,"./locales/en_au_ocker":276,"./locales/es":308,"./locales/es_MX":352,"./locales/fa":371,"./locales/fr":397,"./locales/fr_CA":417,"./locales/ge":443,"./locales/id_ID":472,"./locales/it":509,"./locales/ja":531,"./locales/ko":552,"./locales/nb_NO":582,"./locales/nep":602,"./locales/nl":626,"./locales/pl":666,"./locales/pt_BR":695,"./locales/ru":732,"./locales/sk":772,"./locales/sv":819,"./locales/tr":845,"./locales/uk":878,"./locales/vi":905,"./locales/zh_CN":928,"./locales/zh_TW":947}],14:[function(require,module,exports){ module["exports"] = [ "###", "##", "#", "##a", @@ -6295,13 +7112,14 @@ module['exports'] = de_CH; de_CH.title = "German (Switzerland)"; de_CH.address = require("./address"); de_CH.company = require("./company"); de_CH.internet = require("./internet"); +de_CH.name = require("./name"); de_CH.phone_number = require("./phone_number"); -},{"./address":81,"./company":83,"./internet":88,"./phone_number":90}],87:[function(require,module,exports){ +},{"./address":81,"./company":83,"./internet":88,"./name":90,"./phone_number":95}],87:[function(require,module,exports){ module["exports"] = [ "com", "net", "biz", "ch", @@ -6317,10 +7135,589 @@ module['exports'] = internet; internet.domain_suffix = require("./domain_suffix"); },{"./domain_suffix":87}],89:[function(require,module,exports){ module["exports"] = [ + "Adolf", + "Adrian", + "Agnes", + "Alain", + "Albert", + "Alberto", + "Aldo", + "Alex", + "Alexander", + "Alexandre", + "Alfons", + "Alfred", + "Alice", + "Alois", + "André", + "Andrea", + "Andreas", + "Angela", + "Angelo", + "Anita", + "Anna", + "Anne", + "Anne-Marie", + "Annemarie", + "Antoine", + "Anton", + "Antonio", + "Armin", + "Arnold", + "Arthur", + "Astrid", + "Barbara", + "Beat", + "Beatrice", + "Beatrix", + "Bernadette", + "Bernard", + "Bernhard", + "Bettina", + "Brigitta", + "Brigitte", + "Bruno", + "Carlo", + "Carmen", + "Caroline", + "Catherine", + "Chantal", + "Charles", + "Charlotte", + "Christa", + "Christian", + "Christiane", + "Christina", + "Christine", + "Christoph", + "Christophe", + "Claire", + "Claude", + "Claudia", + "Claudine", + "Claudio", + "Corinne", + "Cornelia", + "Daniel", + "Daniela", + "Daniele", + "Danielle", + "David", + "Denis", + "Denise", + "Didier", + "Dieter", + "Dominik", + "Dominique", + "Dora", + "Doris", + "Edgar", + "Edith", + "Eduard", + "Edwin", + "Eliane", + "Elisabeth", + "Elsa", + "Elsbeth", + "Emil", + "Enrico", + "Eric", + "Erica", + "Erich", + "Erika", + "Ernst", + "Erwin", + "Esther", + "Eugen", + "Eva", + "Eveline", + "Evelyne", + "Fabienne", + "Felix", + "Ferdinand", + "Florence", + "Francesco", + "Francis", + "Franco", + "François", + "Françoise", + "Frank", + "Franz", + "Franziska", + "Frédéric", + "Fredy", + "Fridolin", + "Friedrich", + "Fritz", + "Gabriel", + "Gabriela", + "Gabrielle", + "Georg", + "Georges", + "Gérald", + "Gérard", + "Gerhard", + "Gertrud", + "Gianni", + "Gilbert", + "Giorgio", + "Giovanni", + "Gisela", + "Giuseppe", + "Gottfried", + "Guido", + "Guy", + "Hanna", + "Hans", + "Hans-Peter", + "Hans-Rudolf", + "Hans-Ulrich", + "Hansjörg", + "Hanspeter", + "Hansruedi", + "Hansueli", + "Harry", + "Heidi", + "Heinrich", + "Heinz", + "Helen", + "Helena", + "Helene", + "Helmut", + "Henri", + "Herbert", + "Hermann", + "Hildegard", + "Hubert", + "Hugo", + "Ingrid", + "Irene", + "Iris", + "Isabelle", + "Jacqueline", + "Jacques", + "Jakob", + "Jan", + "Janine", + "Jean", + "Jean-Claude", + "Jean-Daniel", + "Jean-François", + "Jean-Jacques", + "Jean-Louis", + "Jean-Luc", + "Jean-Marc", + "Jean-Marie", + "Jean-Paul", + "Jean-Pierre", + "Johann", + "Johanna", + "Johannes", + "John", + "Jolanda", + "Jörg", + "Josef", + "Joseph", + "Josette", + "Josiane", + "Judith", + "Julia", + "Jürg", + "Karin", + "Karl", + "Katharina", + "Klaus", + "Konrad", + "Kurt", + "Laura", + "Laurence", + "Laurent", + "Leo", + "Liliane", + "Liselotte", + "Louis", + "Luca", + "Luigi", + "Lukas", + "Lydia", + "Madeleine", + "Maja", + "Manfred", + "Manuel", + "Manuela", + "Marc", + "Marcel", + "Marco", + "Margrit", + "Margrith", + "Maria", + "Marianne", + "Mario", + "Marion", + "Markus", + "Marlène", + "Marlies", + "Marlis", + "Martha", + "Martin", + "Martina", + "Martine", + "Massimo", + "Matthias", + "Maurice", + "Max", + "Maya", + "Michael", + "Michel", + "Michele", + "Micheline", + "Monica", + "Monika", + "Monique", + "Myriam", + "Nadia", + "Nadja", + "Nathalie", + "Nelly", + "Nicolas", + "Nicole", + "Niklaus", + "Norbert", + "Olivier", + "Oskar", + "Otto", + "Paola", + "Paolo", + "Pascal", + "Patricia", + "Patrick", + "Paul", + "Peter", + "Petra", + "Philipp", + "Philippe", + "Pia", + "Pierre", + "Pierre-Alain", + "Pierre-André", + "Pius", + "Priska", + "Rainer", + "Raymond", + "Regina", + "Regula", + "Reinhard", + "Remo", + "Renata", + "Renate", + "Renato", + "Rene", + "René", + "Reto", + "Richard", + "Rita", + "Robert", + "Roberto", + "Roger", + "Roland", + "Rolf", + "Roman", + "Rosa", + "Rosemarie", + "Rosmarie", + "Rudolf", + "Ruedi", + "Ruth", + "Sabine", + "Samuel", + "Sandra", + "Sandro", + "Serge", + "Silvia", + "Silvio", + "Simon", + "Simone", + "Sonia", + "Sonja", + "Stefan", + "Stephan", + "Stéphane", + "Stéphanie", + "Susanna", + "Susanne", + "Suzanne", + "Sylvia", + "Sylvie", + "Theo", + "Theodor", + "Therese", + "Thomas", + "Toni", + "Ueli", + "Ulrich", + "Urs", + "Ursula", + "Verena", + "Véronique", + "Victor", + "Viktor", + "Vreni", + "Walter", + "Werner", + "Willi", + "Willy", + "Wolfgang", + "Yolande", + "Yves", + "Yvette", + "Yvonne", + +]; + +},{}],90:[function(require,module,exports){ +var name = {}; +module['exports'] = name; +name.first_name = require("./first_name"); +name.last_name = require("./last_name"); +name.prefix = require("./prefix"); +name.name = require("./name"); + +},{"./first_name":89,"./last_name":91,"./name":92,"./prefix":93}],91:[function(require,module,exports){ +module["exports"] = [ + "Ackermann", + "Aebi", + "Albrecht", + "Ammann", + "Amrein", + "Arnold", + "Bachmann", + "Bader", + "Bär", + "Bättig", + "Bauer", + "Baumann", + "Baumgartner", + "Baur", + "Beck", + "Benz", + "Berger", + "Bernasconi", + "Betschart", + "Bianchi", + "Bieri", + "Blaser", + "Blum", + "Bolliger", + "Bosshard", + "Braun", + "Brun", + "Brunner", + "Bucher", + "Bühler", + "Bühlmann", + "Burri", + "Christen", + "Egger", + "Egli", + "Eichenberger", + "Erni", + "Ernst", + "Eugster", + "Fankhauser", + "Favre", + "Fehr", + "Felber", + "Felder", + "Ferrari", + "Fischer", + "Flückiger", + "Forster", + "Frei", + "Frey", + "Frick", + "Friedli", + "Fuchs", + "Furrer", + "Gasser", + "Geiger", + "Gerber", + "Gfeller", + "Giger", + "Gloor", + "Graf", + "Grob", + "Gross", + "Gut", + "Haas", + "Häfliger", + "Hafner", + "Hartmann", + "Hasler", + "Hauser", + "Hermann", + "Herzog", + "Hess", + "Hirt", + "Hodel", + "Hofer", + "Hoffmann", + "Hofmann", + "Hofstetter", + "Hotz", + "Huber", + "Hug", + "Hunziker", + "Hürlimann", + "Imhof", + "Isler", + "Iten", + "Jäggi", + "Jenni", + "Jost", + "Kägi", + "Kaiser", + "Kälin", + "Käser", + "Kaufmann", + "Keller", + "Kern", + "Kessler", + "Knecht", + "Koch", + "Kohler", + "Kuhn", + "Küng", + "Kunz", + "Lang", + "Lanz", + "Lehmann", + "Leu", + "Leunberger", + "Lüscher", + "Lustenberger", + "Lüthi", + "Lutz", + "Mäder", + "Maier", + "Marti", + "Martin", + "Maurer", + "Mayer", + "Meier", + "Meili", + "Meister", + "Merz", + "Mettler", + "Meyer", + "Michel", + "Moser", + "Müller", + "Näf", + "Ott", + "Peter", + "Pfister", + "Portmann", + "Probst", + "Rey", + "Ritter", + "Roos", + "Roth", + "Rüegg", + "Schäfer", + "Schaller", + "Schär", + "Schärer", + "Schaub", + "Scheidegger", + "Schenk", + "Scherrer", + "Schlatter", + "Schmid", + "Schmidt", + "Schneider", + "Schnyder", + "Schoch", + "Schuler", + "Schumacher", + "Schürch", + "Schwab", + "Schwarz", + "Schweizer", + "Seiler", + "Senn", + "Sidler", + "Siegrist", + "Sigrist", + "Spörri", + "Stadelmann", + "Stalder", + "Staub", + "Stauffer", + "Steffen", + "Steiger", + "Steiner", + "Steinmann", + "Stettler", + "Stocker", + "Stöckli", + "Stucki", + "Studer", + "Stutz", + "Suter", + "Sutter", + "Tanner", + "Thommen", + "Tobler", + "Vogel", + "Vogt", + "Wagner", + "Walder", + "Walter", + "Weber", + "Wegmann", + "Wehrli", + "Weibel", + "Wenger", + "Wettstein", + "Widmer", + "Winkler", + "Wirth", + "Wirz", + "Wolf", + "Wüthrich", + "Wyss", + "Zbinden", + "Zehnder", + "Ziegler", + "Zimmermann", + "Zingg", + "Zollinger", + "Zürcher" +]; + +},{}],92:[function(require,module,exports){ +module["exports"] = [ + "#{first_name} #{last_name}", + "#{first_name} #{last_name}", + "#{first_name} #{last_name}", + "#{first_name} #{last_name}", + "#{first_name} #{last_name}", + "#{first_name} #{last_name}" +]; + +},{}],93:[function(require,module,exports){ +module["exports"] = [ + "Hr.", + "Fr.", + "Dr." +]; + +},{}],94:[function(require,module,exports){ +module["exports"] = [ "0800 ### ###", "0800 ## ## ##", "0## ### ## ##", "0## ### ## ##", "+41 ## ### ## ##", @@ -6328,33 +7725,33 @@ "076 ### ## ##", "+4178 ### ## ##", "0041 79 ### ## ##" ]; -},{}],90:[function(require,module,exports){ +},{}],95:[function(require,module,exports){ arguments[4][47][0].apply(exports,arguments) -},{"./formats":89,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],91:[function(require,module,exports){ +},{"./formats":94,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],96:[function(require,module,exports){ module["exports"] = [ "#####", "####", "###" ]; -},{}],92:[function(require,module,exports){ +},{}],97:[function(require,module,exports){ module.exports=require(15) -},{"/Users/a/dev/faker.js/lib/locales/de/address/city.js":15}],93:[function(require,module,exports){ +},{"/Users/a/dev/faker.js/lib/locales/de/address/city.js":15}],98:[function(require,module,exports){ module["exports"] = [ "North", "East", "West", "South", "New", "Lake", "Port" ]; -},{}],94:[function(require,module,exports){ +},{}],99:[function(require,module,exports){ module["exports"] = [ "town", "ton", "land", "ville", @@ -6373,11 +7770,11 @@ "haven", "side", "shire" ]; -},{}],95:[function(require,module,exports){ +},{}],100:[function(require,module,exports){ module["exports"] = [ "Afghanistan", "Albania", "Algeria", "American Samoa", @@ -6622,11 +8019,11 @@ "Yemen", "Zambia", "Zimbabwe" ]; -},{}],96:[function(require,module,exports){ +},{}],101:[function(require,module,exports){ module["exports"] = [ "AD", "AE", "AF", "AG", @@ -6876,26 +8273,26 @@ "ZA", "ZM", "ZW" ]; -},{}],97:[function(require,module,exports){ +},{}],102:[function(require,module,exports){ module["exports"] = [ "Avon", "Bedfordshire", "Berkshire", "Borders", "Buckinghamshire", "Cambridgeshire" ]; -},{}],98:[function(require,module,exports){ +},{}],103:[function(require,module,exports){ module["exports"] = [ "United States of America" ]; -},{}],99:[function(require,module,exports){ +},{}],104:[function(require,module,exports){ var address = {}; module['exports'] = address; address.city_prefix = require("./city_prefix"); address.city_suffix = require("./city_suffix"); address.county = require("./county"); @@ -6912,25 +8309,25 @@ address.city = require("./city"); address.street_name = require("./street_name"); address.street_address = require("./street_address"); address.default_country = require("./default_country"); -},{"./building_number":91,"./city":92,"./city_prefix":93,"./city_suffix":94,"./country":95,"./country_code":96,"./county":97,"./default_country":98,"./postcode":100,"./postcode_by_state":101,"./secondary_address":102,"./state":103,"./state_abbr":104,"./street_address":105,"./street_name":106,"./street_suffix":107,"./time_zone":108}],100:[function(require,module,exports){ +},{"./building_number":96,"./city":97,"./city_prefix":98,"./city_suffix":99,"./country":100,"./country_code":101,"./county":102,"./default_country":103,"./postcode":105,"./postcode_by_state":106,"./secondary_address":107,"./state":108,"./state_abbr":109,"./street_address":110,"./street_name":111,"./street_suffix":112,"./time_zone":113}],105:[function(require,module,exports){ module["exports"] = [ "#####", "#####-####" ]; -},{}],101:[function(require,module,exports){ -module.exports=require(100) -},{"/Users/a/dev/faker.js/lib/locales/en/address/postcode.js":100}],102:[function(require,module,exports){ +},{}],106:[function(require,module,exports){ +module.exports=require(105) +},{"/Users/a/dev/faker.js/lib/locales/en/address/postcode.js":105}],107:[function(require,module,exports){ module["exports"] = [ "Apt. ###", "Suite ###" ]; -},{}],103:[function(require,module,exports){ +},{}],108:[function(require,module,exports){ module["exports"] = [ "Alabama", "Alaska", "Arizona", "Arkansas", @@ -6980,11 +8377,11 @@ "West Virginia", "Wisconsin", "Wyoming" ]; -},{}],104:[function(require,module,exports){ +},{}],109:[function(require,module,exports){ module["exports"] = [ "AL", "AK", "AZ", "AR", @@ -7034,22 +8431,22 @@ "WV", "WI", "WY" ]; -},{}],105:[function(require,module,exports){ +},{}],110:[function(require,module,exports){ module["exports"] = [ "#{building_number} #{street_name}" ]; -},{}],106:[function(require,module,exports){ +},{}],111:[function(require,module,exports){ module["exports"] = [ "#{Name.first_name} #{street_suffix}", "#{Name.last_name} #{street_suffix}" ]; -},{}],107:[function(require,module,exports){ +},{}],112:[function(require,module,exports){ module["exports"] = [ "Alley", "Avenue", "Branch", "Bridge", @@ -7274,11 +8671,11 @@ "Ways", "Well", "Wells" ]; -},{}],108:[function(require,module,exports){ +},{}],113:[function(require,module,exports){ module["exports"] = [ "Pacific/Midway", "Pacific/Pago_Pago", "Pacific/Honolulu", "America/Juneau", @@ -7421,24 +8818,24 @@ "Pacific/Tongatapu", "Pacific/Fakaofo", "Pacific/Apia" ]; -},{}],109:[function(require,module,exports){ +},{}],114:[function(require,module,exports){ module["exports"] = [ "#{Name.name}", "#{Company.name}" ]; -},{}],110:[function(require,module,exports){ +},{}],115:[function(require,module,exports){ var app = {}; module['exports'] = app; app.name = require("./name"); app.version = require("./version"); app.author = require("./author"); -},{"./author":109,"./name":111,"./version":112}],111:[function(require,module,exports){ +},{"./author":114,"./name":116,"./version":117}],116:[function(require,module,exports){ module["exports"] = [ "Redhold", "Treeflex", "Trippledex", "Kanlam", @@ -7500,61 +8897,61 @@ "Zathin", "Duobam", "Keylex" ]; -},{}],112:[function(require,module,exports){ +},{}],117:[function(require,module,exports){ module["exports"] = [ "0.#.#", "0.##", "#.##", "#.#", "#.#.#" ]; -},{}],113:[function(require,module,exports){ +},{}],118:[function(require,module,exports){ module["exports"] = [ "2011-10-12", "2012-11-12", "2015-11-11", "2013-9-12" ]; -},{}],114:[function(require,module,exports){ +},{}],119:[function(require,module,exports){ module["exports"] = [ "1234-2121-1221-1211", "1212-1221-1121-1234", "1211-1221-1234-2201", "1228-1221-1221-1431" ]; -},{}],115:[function(require,module,exports){ +},{}],120:[function(require,module,exports){ module["exports"] = [ "visa", "mastercard", "americanexpress", "discover" ]; -},{}],116:[function(require,module,exports){ +},{}],121:[function(require,module,exports){ var business = {}; module['exports'] = business; business.credit_card_numbers = require("./credit_card_numbers"); business.credit_card_expiry_dates = require("./credit_card_expiry_dates"); business.credit_card_types = require("./credit_card_types"); -},{"./credit_card_expiry_dates":113,"./credit_card_numbers":114,"./credit_card_types":115}],117:[function(require,module,exports){ +},{"./credit_card_expiry_dates":118,"./credit_card_numbers":119,"./credit_card_types":120}],122:[function(require,module,exports){ module["exports"] = [ "###-###-####", "(###) ###-####", "1-###-###-####", "###.###.####" ]; -},{}],118:[function(require,module,exports){ +},{}],123:[function(require,module,exports){ arguments[4][29][0].apply(exports,arguments) -},{"./formats":117,"/Users/a/dev/faker.js/lib/locales/de/cell_phone/index.js":29}],119:[function(require,module,exports){ +},{"./formats":122,"/Users/a/dev/faker.js/lib/locales/de/cell_phone/index.js":29}],124:[function(require,module,exports){ module["exports"] = [ "red", "green", "blue", "yellow", @@ -7585,11 +8982,11 @@ "azure", "lavender", "silver" ]; -},{}],120:[function(require,module,exports){ +},{}],125:[function(require,module,exports){ module["exports"] = [ "Books", "Movies", "Music", "Games", @@ -7611,18 +9008,18 @@ "Outdoors", "Automotive", "Industrial" ]; -},{}],121:[function(require,module,exports){ +},{}],126:[function(require,module,exports){ var commerce = {}; module['exports'] = commerce; commerce.color = require("./color"); commerce.department = require("./department"); commerce.product_name = require("./product_name"); -},{"./color":119,"./department":120,"./product_name":122}],122:[function(require,module,exports){ +},{"./color":124,"./department":125,"./product_name":127}],127:[function(require,module,exports){ module["exports"] = { "adjective": [ "Small", "Ergonomic", "Rustic", @@ -7680,11 +9077,11 @@ "Sausages", "Chips" ] }; -},{}],123:[function(require,module,exports){ +},{}],128:[function(require,module,exports){ module["exports"] = [ "Adaptive", "Advanced", "Ameliorated", "Assimilated", @@ -7784,11 +9181,11 @@ "Virtual", "Visionary", "Vision-oriented" ]; -},{}],124:[function(require,module,exports){ +},{}],129:[function(require,module,exports){ module["exports"] = [ "clicks-and-mortar", "value-added", "vertical", "proactive", @@ -7853,11 +9250,11 @@ "compelling", "holistic", "rich" ]; -},{}],125:[function(require,module,exports){ +},{}],130:[function(require,module,exports){ module["exports"] = [ "synergies", "web-readiness", "paradigms", "markets", @@ -7901,11 +9298,11 @@ "experiences", "web services", "methodologies" ]; -},{}],126:[function(require,module,exports){ +},{}],131:[function(require,module,exports){ module["exports"] = [ "implement", "utilize", "integrate", "streamline", @@ -7965,11 +9362,11 @@ "productize", "redefine", "recontextualize" ]; -},{}],127:[function(require,module,exports){ +},{}],132:[function(require,module,exports){ module["exports"] = [ "24 hour", "24/7", "3rd generation", "4th generation", @@ -8070,11 +9467,11 @@ "zero administration", "zero defect", "zero tolerance" ]; -},{}],128:[function(require,module,exports){ +},{}],133:[function(require,module,exports){ var company = {}; module['exports'] = company; company.suffix = require("./suffix"); company.adjective = require("./adjective"); company.descriptor = require("./descriptor"); @@ -8082,18 +9479,18 @@ company.bs_verb = require("./bs_verb"); company.bs_adjective = require("./bs_adjective"); company.bs_noun = require("./bs_noun"); company.name = require("./name"); -},{"./adjective":123,"./bs_adjective":124,"./bs_noun":125,"./bs_verb":126,"./descriptor":127,"./name":129,"./noun":130,"./suffix":131}],129:[function(require,module,exports){ +},{"./adjective":128,"./bs_adjective":129,"./bs_noun":130,"./bs_verb":131,"./descriptor":132,"./name":134,"./noun":135,"./suffix":136}],134:[function(require,module,exports){ module["exports"] = [ "#{Name.last_name} #{suffix}", "#{Name.last_name}-#{Name.last_name}", "#{Name.last_name}, #{Name.last_name} and #{Name.last_name}" ]; -},{}],130:[function(require,module,exports){ +},{}],135:[function(require,module,exports){ module["exports"] = [ "ability", "access", "adapter", "algorithm", @@ -8197,41 +9594,41 @@ "utilisation", "website", "workforce" ]; -},{}],131:[function(require,module,exports){ +},{}],136:[function(require,module,exports){ module["exports"] = [ "Inc", "and Sons", "LLC", "Group" ]; -},{}],132:[function(require,module,exports){ +},{}],137:[function(require,module,exports){ module["exports"] = [ "/34##-######-####L/", "/37##-######-####L/" ]; -},{}],133:[function(require,module,exports){ +},{}],138:[function(require,module,exports){ module["exports"] = [ "/30[0-5]#-######-###L/", "/368#-######-###L/" ]; -},{}],134:[function(require,module,exports){ +},{}],139:[function(require,module,exports){ module["exports"] = [ "/6011-####-####-###L/", "/65##-####-####-###L/", "/64[4-9]#-####-####-###L/", "/6011-62##-####-####-###L/", "/65##-62##-####-####-###L/", "/64[4-9]#-62##-####-####-###L/" ]; -},{}],135:[function(require,module,exports){ +},{}],140:[function(require,module,exports){ var credit_card = {}; module['exports'] = credit_card; credit_card.visa = require("./visa"); credit_card.mastercard = require("./mastercard"); credit_card.discover = require("./discover"); @@ -8241,18 +9638,18 @@ credit_card.switch = require("./switch"); credit_card.solo = require("./solo"); credit_card.maestro = require("./maestro"); credit_card.laser = require("./laser"); -},{"./american_express":132,"./diners_club":133,"./discover":134,"./jcb":136,"./laser":137,"./maestro":138,"./mastercard":139,"./solo":140,"./switch":141,"./visa":142}],136:[function(require,module,exports){ +},{"./american_express":137,"./diners_club":138,"./discover":139,"./jcb":141,"./laser":142,"./maestro":143,"./mastercard":144,"./solo":145,"./switch":146,"./visa":147}],141:[function(require,module,exports){ module["exports"] = [ "/3528-####-####-###L/", "/3529-####-####-###L/", "/35[3-8]#-####-####-###L/" ]; -},{}],137:[function(require,module,exports){ +},{}],142:[function(require,module,exports){ module["exports"] = [ "/6304###########L/", "/6706###########L/", "/6771###########L/", "/6709###########L/", @@ -8260,50 +9657,50 @@ "/6706#########{5,6}L/", "/6771#########{5,6}L/", "/6709#########{5,6}L/" ]; -},{}],138:[function(require,module,exports){ +},{}],143:[function(require,module,exports){ module["exports"] = [ "/50#{9,16}L/", "/5[6-8]#{9,16}L/", "/56##{9,16}L/" ]; -},{}],139:[function(require,module,exports){ +},{}],144:[function(require,module,exports){ module["exports"] = [ "/5[1-5]##-####-####-###L/", "/6771-89##-####-###L/" ]; -},{}],140:[function(require,module,exports){ +},{}],145:[function(require,module,exports){ module["exports"] = [ "/6767-####-####-###L/", "/6767-####-####-####-#L/", "/6767-####-####-####-##L/" ]; -},{}],141:[function(require,module,exports){ +},{}],146:[function(require,module,exports){ module["exports"] = [ "/6759-####-####-###L/", "/6759-####-####-####-#L/", "/6759-####-####-####-##L/" ]; -},{}],142:[function(require,module,exports){ +},{}],147:[function(require,module,exports){ module["exports"] = [ "/4###########L/", "/4###-####-####-###L/" ]; -},{}],143:[function(require,module,exports){ +},{}],148:[function(require,module,exports){ var date = {}; module["exports"] = date; date.month = require("./month"); date.weekday = require("./weekday"); -},{"./month":144,"./weekday":145}],144:[function(require,module,exports){ +},{"./month":149,"./weekday":150}],149:[function(require,module,exports){ // Source: http://unicode.org/cldr/trac/browser/tags/release-27/common/main/en.xml#L1799 module["exports"] = { wide: [ "January", "February", @@ -8364,11 +9761,11 @@ "Nov", "Dec" ] }; -},{}],145:[function(require,module,exports){ +},{}],150:[function(require,module,exports){ // Source: http://unicode.org/cldr/trac/browser/tags/release-27/common/main/en.xml#L1847 module["exports"] = { wide: [ "Sunday", "Monday", @@ -8409,11 +9806,11 @@ "Fri", "Sat" ] }; -},{}],146:[function(require,module,exports){ +},{}],151:[function(require,module,exports){ module["exports"] = [ "Checking", "Savings", "Money Market", "Investment", @@ -8421,11 +9818,11 @@ "Credit Card", "Auto Loan", "Personal Loan" ]; -},{}],147:[function(require,module,exports){ +},{}],152:[function(require,module,exports){ module["exports"] = { "UAE Dirham": { "code": "AED", "symbol": "" }, @@ -9101,26 +10498,26 @@ "code": "ZWL", "symbol": "" } }; -},{}],148:[function(require,module,exports){ +},{}],153:[function(require,module,exports){ var finance = {}; module['exports'] = finance; finance.account_type = require("./account_type"); finance.transaction_type = require("./transaction_type"); finance.currency = require("./currency"); -},{"./account_type":146,"./currency":147,"./transaction_type":149}],149:[function(require,module,exports){ +},{"./account_type":151,"./currency":152,"./transaction_type":154}],154:[function(require,module,exports){ module["exports"] = [ "deposit", "withdrawal", "payment", "invoice" ]; -},{}],150:[function(require,module,exports){ +},{}],155:[function(require,module,exports){ module["exports"] = [ "TCP", "HTTP", "SDD", "RAM", @@ -9149,11 +10546,11 @@ "JSON", "XSS", "JBOD" ]; -},{}],151:[function(require,module,exports){ +},{}],156:[function(require,module,exports){ module["exports"] = [ "auxiliary", "primary", "back-end", "digital", @@ -9171,20 +10568,20 @@ "optical", "solid state", "mobile" ]; -},{}],152:[function(require,module,exports){ +},{}],157:[function(require,module,exports){ var hacker = {}; module['exports'] = hacker; hacker.abbreviation = require("./abbreviation"); hacker.adjective = require("./adjective"); hacker.noun = require("./noun"); hacker.verb = require("./verb"); hacker.ingverb = require("./ingverb"); -},{"./abbreviation":150,"./adjective":151,"./ingverb":153,"./noun":154,"./verb":155}],153:[function(require,module,exports){ +},{"./abbreviation":155,"./adjective":156,"./ingverb":158,"./noun":159,"./verb":160}],158:[function(require,module,exports){ module["exports"] = [ "backing up", "bypassing", "hacking", "overriding", @@ -9200,11 +10597,11 @@ "transmitting", "programming", "parsing" ]; -},{}],154:[function(require,module,exports){ +},{}],159:[function(require,module,exports){ module["exports"] = [ "driver", "protocol", "bandwidth", "panel", @@ -9228,11 +10625,11 @@ "circuit", "capacitor", "matrix" ]; -},{}],155:[function(require,module,exports){ +},{}],160:[function(require,module,exports){ module["exports"] = [ "back up", "bypass", "hack", "override", @@ -9250,11 +10647,11 @@ "program", "reboot", "parse" ]; -},{}],156:[function(require,module,exports){ +},{}],161:[function(require,module,exports){ var en = {}; module['exports'] = en; en.title = "English"; en.separator = " & "; en.address = require("./address"); @@ -9270,12 +10667,13 @@ en.team = require("./team"); en.hacker = require("./hacker"); en.app = require("./app"); en.finance = require("./finance"); en.date = require("./date"); +en.system = require("./system"); -},{"./address":99,"./app":110,"./business":116,"./cell_phone":118,"./commerce":121,"./company":128,"./credit_card":135,"./date":143,"./finance":148,"./hacker":152,"./internet":160,"./lorem":161,"./name":165,"./phone_number":172,"./team":174}],157:[function(require,module,exports){ +},{"./address":104,"./app":115,"./business":121,"./cell_phone":123,"./commerce":126,"./company":133,"./credit_card":140,"./date":148,"./finance":153,"./hacker":157,"./internet":166,"./lorem":167,"./name":171,"./phone_number":178,"./system":179,"./team":182}],162:[function(require,module,exports){ module["exports"] = [ "https://s3.amazonaws.com/uifaces/faces/twitter/jarjan/128.jpg", "https://s3.amazonaws.com/uifaces/faces/twitter/mahdif/128.jpg", "https://s3.amazonaws.com/uifaces/faces/twitter/sprayaga/128.jpg", "https://s3.amazonaws.com/uifaces/faces/twitter/ruzinav/128.jpg", @@ -10541,36 +11939,44 @@ "https://s3.amazonaws.com/uifaces/faces/twitter/vikasvinfotech/128.jpg", "https://s3.amazonaws.com/uifaces/faces/twitter/urrutimeoli/128.jpg", "https://s3.amazonaws.com/uifaces/faces/twitter/areandacom/128.jpg" ]; -},{}],158:[function(require,module,exports){ +},{}],163:[function(require,module,exports){ module["exports"] = [ "com", "biz", "info", "name", "net", "org" ]; -},{}],159:[function(require,module,exports){ +},{}],164:[function(require,module,exports){ +module["exports"] = [ + "example.org", + "example.com", + "example.net" +]; + +},{}],165:[function(require,module,exports){ module.exports=require(36) -},{"/Users/a/dev/faker.js/lib/locales/de/internet/free_email.js":36}],160:[function(require,module,exports){ +},{"/Users/a/dev/faker.js/lib/locales/de/internet/free_email.js":36}],166:[function(require,module,exports){ var internet = {}; module['exports'] = internet; internet.free_email = require("./free_email"); +internet.example_email = require("./example_email"); internet.domain_suffix = require("./domain_suffix"); internet.avatar_uri = require("./avatar_uri"); -},{"./avatar_uri":157,"./domain_suffix":158,"./free_email":159}],161:[function(require,module,exports){ +},{"./avatar_uri":162,"./domain_suffix":163,"./example_email":164,"./free_email":165}],167:[function(require,module,exports){ var lorem = {}; module['exports'] = lorem; lorem.words = require("./words"); lorem.supplemental = require("./supplemental"); -},{"./supplemental":162,"./words":163}],162:[function(require,module,exports){ +},{"./supplemental":168,"./words":169}],168:[function(require,module,exports){ module["exports"] = [ "abbas", "abduco", "abeo", "abscido", @@ -11410,13 +12816,13 @@ "vulticulus", "vultuosus", "xiphias" ]; -},{}],163:[function(require,module,exports){ +},{}],169:[function(require,module,exports){ module.exports=require(39) -},{"/Users/a/dev/faker.js/lib/locales/de/lorem/words.js":39}],164:[function(require,module,exports){ +},{"/Users/a/dev/faker.js/lib/locales/de/lorem/words.js":39}],170:[function(require,module,exports){ module["exports"] = [ "Aaliyah", "Aaron", "Abagail", "Abbey", @@ -14423,21 +15829,21 @@ "Zola", "Zora", "Zula" ]; -},{}],165:[function(require,module,exports){ +},{}],171:[function(require,module,exports){ var name = {}; module['exports'] = name; name.first_name = require("./first_name"); name.last_name = require("./last_name"); name.prefix = require("./prefix"); name.suffix = require("./suffix"); name.title = require("./title"); name.name = require("./name"); -},{"./first_name":164,"./last_name":166,"./name":167,"./prefix":168,"./suffix":169,"./title":170}],166:[function(require,module,exports){ +},{"./first_name":170,"./last_name":172,"./name":173,"./prefix":174,"./suffix":175,"./title":176}],172:[function(require,module,exports){ module["exports"] = [ "Abbott", "Abernathy", "Abshire", "Adams", @@ -14911,30 +16317,30 @@ "Ziemann", "Zieme", "Zulauf" ]; -},{}],167:[function(require,module,exports){ +},{}],173:[function(require,module,exports){ module["exports"] = [ "#{prefix} #{first_name} #{last_name}", "#{first_name} #{last_name} #{suffix}", "#{first_name} #{last_name}", "#{first_name} #{last_name}", "#{first_name} #{last_name}", "#{first_name} #{last_name}" ]; -},{}],168:[function(require,module,exports){ +},{}],174:[function(require,module,exports){ module["exports"] = [ "Mr.", "Mrs.", "Ms.", "Miss", "Dr." ]; -},{}],169:[function(require,module,exports){ +},{}],175:[function(require,module,exports){ module["exports"] = [ "Jr.", "Sr.", "I", "II", @@ -14945,11 +16351,11 @@ "DDS", "PhD", "DVM" ]; -},{}],170:[function(require,module,exports){ +},{}],176:[function(require,module,exports){ module["exports"] = { "descriptor": [ "Lead", "Senior", "Direct", @@ -15039,11 +16445,11 @@ "Representative", "Strategist" ] }; -},{}],171:[function(require,module,exports){ +},{}],177:[function(require,module,exports){ module["exports"] = [ "###-###-####", "(###) ###-####", "1-###-###-####", "###.###.####", @@ -15063,13 +16469,6599 @@ "(###) ###-#### x#####", "1-###-###-#### x#####", "###.###.#### x#####" ]; -},{}],172:[function(require,module,exports){ +},{}],178:[function(require,module,exports){ arguments[4][47][0].apply(exports,arguments) -},{"./formats":171,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],173:[function(require,module,exports){ +},{"./formats":177,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],179:[function(require,module,exports){ +var system = {}; +module['exports'] = system; +system.mimeTypes = require("./mimeTypes"); +},{"./mimeTypes":180}],180:[function(require,module,exports){ +/* + +The MIT License (MIT) + +Copyright (c) 2014 Jonathan Ong me@jongleberry.com + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +Definitions from mime-db v1.21.0 +For updates check: https://github.com/jshttp/mime-db/blob/master/db.json + +*/ + +module['exports'] = { + "application/1d-interleaved-parityfec": { + "source": "iana" + }, + "application/3gpdash-qoe-report+xml": { + "source": "iana" + }, + "application/3gpp-ims+xml": { + "source": "iana" + }, + "application/a2l": { + "source": "iana" + }, + "application/activemessage": { + "source": "iana" + }, + "application/alto-costmap+json": { + "source": "iana", + "compressible": true + }, + "application/alto-costmapfilter+json": { + "source": "iana", + "compressible": true + }, + "application/alto-directory+json": { + "source": "iana", + "compressible": true + }, + "application/alto-endpointcost+json": { + "source": "iana", + "compressible": true + }, + "application/alto-endpointcostparams+json": { + "source": "iana", + "compressible": true + }, + "application/alto-endpointprop+json": { + "source": "iana", + "compressible": true + }, + "application/alto-endpointpropparams+json": { + "source": "iana", + "compressible": true + }, + "application/alto-error+json": { + "source": "iana", + "compressible": true + }, + "application/alto-networkmap+json": { + "source": "iana", + "compressible": true + }, + "application/alto-networkmapfilter+json": { + "source": "iana", + "compressible": true + }, + "application/aml": { + "source": "iana" + }, + "application/andrew-inset": { + "source": "iana", + "extensions": ["ez"] + }, + "application/applefile": { + "source": "iana" + }, + "application/applixware": { + "source": "apache", + "extensions": ["aw"] + }, + "application/atf": { + "source": "iana" + }, + "application/atfx": { + "source": "iana" + }, + "application/atom+xml": { + "source": "iana", + "compressible": true, + "extensions": ["atom"] + }, + "application/atomcat+xml": { + "source": "iana", + "extensions": ["atomcat"] + }, + "application/atomdeleted+xml": { + "source": "iana" + }, + "application/atomicmail": { + "source": "iana" + }, + "application/atomsvc+xml": { + "source": "iana", + "extensions": ["atomsvc"] + }, + "application/atxml": { + "source": "iana" + }, + "application/auth-policy+xml": { + "source": "iana" + }, + "application/bacnet-xdd+zip": { + "source": "iana" + }, + "application/batch-smtp": { + "source": "iana" + }, + "application/bdoc": { + "compressible": false, + "extensions": ["bdoc"] + }, + "application/beep+xml": { + "source": "iana" + }, + "application/calendar+json": { + "source": "iana", + "compressible": true + }, + "application/calendar+xml": { + "source": "iana" + }, + "application/call-completion": { + "source": "iana" + }, + "application/cals-1840": { + "source": "iana" + }, + "application/cbor": { + "source": "iana" + }, + "application/ccmp+xml": { + "source": "iana" + }, + "application/ccxml+xml": { + "source": "iana", + "extensions": ["ccxml"] + }, + "application/cdfx+xml": { + "source": "iana" + }, + "application/cdmi-capability": { + "source": "iana", + "extensions": ["cdmia"] + }, + "application/cdmi-container": { + "source": "iana", + "extensions": ["cdmic"] + }, + "application/cdmi-domain": { + "source": "iana", + "extensions": ["cdmid"] + }, + "application/cdmi-object": { + "source": "iana", + "extensions": ["cdmio"] + }, + "application/cdmi-queue": { + "source": "iana", + "extensions": ["cdmiq"] + }, + "application/cdni": { + "source": "iana" + }, + "application/cea": { + "source": "iana" + }, + "application/cea-2018+xml": { + "source": "iana" + }, + "application/cellml+xml": { + "source": "iana" + }, + "application/cfw": { + "source": "iana" + }, + "application/cms": { + "source": "iana" + }, + "application/cnrp+xml": { + "source": "iana" + }, + "application/coap-group+json": { + "source": "iana", + "compressible": true + }, + "application/commonground": { + "source": "iana" + }, + "application/conference-info+xml": { + "source": "iana" + }, + "application/cpl+xml": { + "source": "iana" + }, + "application/csrattrs": { + "source": "iana" + }, + "application/csta+xml": { + "source": "iana" + }, + "application/cstadata+xml": { + "source": "iana" + }, + "application/csvm+json": { + "source": "iana", + "compressible": true + }, + "application/cu-seeme": { + "source": "apache", + "extensions": ["cu"] + }, + "application/cybercash": { + "source": "iana" + }, + "application/dart": { + "compressible": true + }, + "application/dash+xml": { + "source": "iana", + "extensions": ["mdp"] + }, + "application/dashdelta": { + "source": "iana" + }, + "application/davmount+xml": { + "source": "iana", + "extensions": ["davmount"] + }, + "application/dca-rft": { + "source": "iana" + }, + "application/dcd": { + "source": "iana" + }, + "application/dec-dx": { + "source": "iana" + }, + "application/dialog-info+xml": { + "source": "iana" + }, + "application/dicom": { + "source": "iana" + }, + "application/dii": { + "source": "iana" + }, + "application/dit": { + "source": "iana" + }, + "application/dns": { + "source": "iana" + }, + "application/docbook+xml": { + "source": "apache", + "extensions": ["dbk"] + }, + "application/dskpp+xml": { + "source": "iana" + }, + "application/dssc+der": { + "source": "iana", + "extensions": ["dssc"] + }, + "application/dssc+xml": { + "source": "iana", + "extensions": ["xdssc"] + }, + "application/dvcs": { + "source": "iana" + }, + "application/ecmascript": { + "source": "iana", + "compressible": true, + "extensions": ["ecma"] + }, + "application/edi-consent": { + "source": "iana" + }, + "application/edi-x12": { + "source": "iana", + "compressible": false + }, + "application/edifact": { + "source": "iana", + "compressible": false + }, + "application/emergencycalldata.comment+xml": { + "source": "iana" + }, + "application/emergencycalldata.deviceinfo+xml": { + "source": "iana" + }, + "application/emergencycalldata.providerinfo+xml": { + "source": "iana" + }, + "application/emergencycalldata.serviceinfo+xml": { + "source": "iana" + }, + "application/emergencycalldata.subscriberinfo+xml": { + "source": "iana" + }, + "application/emma+xml": { + "source": "iana", + "extensions": ["emma"] + }, + "application/emotionml+xml": { + "source": "iana" + }, + "application/encaprtp": { + "source": "iana" + }, + "application/epp+xml": { + "source": "iana" + }, + "application/epub+zip": { + "source": "iana", + "extensions": ["epub"] + }, + "application/eshop": { + "source": "iana" + }, + "application/exi": { + "source": "iana", + "extensions": ["exi"] + }, + "application/fastinfoset": { + "source": "iana" + }, + "application/fastsoap": { + "source": "iana" + }, + "application/fdt+xml": { + "source": "iana" + }, + "application/fits": { + "source": "iana" + }, + "application/font-sfnt": { + "source": "iana" + }, + "application/font-tdpfr": { + "source": "iana", + "extensions": ["pfr"] + }, + "application/font-woff": { + "source": "iana", + "compressible": false, + "extensions": ["woff"] + }, + "application/font-woff2": { + "compressible": false, + "extensions": ["woff2"] + }, + "application/framework-attributes+xml": { + "source": "iana" + }, + "application/gml+xml": { + "source": "apache", + "extensions": ["gml"] + }, + "application/gpx+xml": { + "source": "apache", + "extensions": ["gpx"] + }, + "application/gxf": { + "source": "apache", + "extensions": ["gxf"] + }, + "application/gzip": { + "source": "iana", + "compressible": false + }, + "application/h224": { + "source": "iana" + }, + "application/held+xml": { + "source": "iana" + }, + "application/http": { + "source": "iana" + }, + "application/hyperstudio": { + "source": "iana", + "extensions": ["stk"] + }, + "application/ibe-key-request+xml": { + "source": "iana" + }, + "application/ibe-pkg-reply+xml": { + "source": "iana" + }, + "application/ibe-pp-data": { + "source": "iana" + }, + "application/iges": { + "source": "iana" + }, + "application/im-iscomposing+xml": { + "source": "iana" + }, + "application/index": { + "source": "iana" + }, + "application/index.cmd": { + "source": "iana" + }, + "application/index.obj": { + "source": "iana" + }, + "application/index.response": { + "source": "iana" + }, + "application/index.vnd": { + "source": "iana" + }, + "application/inkml+xml": { + "source": "iana", + "extensions": ["ink","inkml"] + }, + "application/iotp": { + "source": "iana" + }, + "application/ipfix": { + "source": "iana", + "extensions": ["ipfix"] + }, + "application/ipp": { + "source": "iana" + }, + "application/isup": { + "source": "iana" + }, + "application/its+xml": { + "source": "iana" + }, + "application/java-archive": { + "source": "apache", + "compressible": false, + "extensions": ["jar","war","ear"] + }, + "application/java-serialized-object": { + "source": "apache", + "compressible": false, + "extensions": ["ser"] + }, + "application/java-vm": { + "source": "apache", + "compressible": false, + "extensions": ["class"] + }, + "application/javascript": { + "source": "iana", + "charset": "UTF-8", + "compressible": true, + "extensions": ["js"] + }, + "application/jose": { + "source": "iana" + }, + "application/jose+json": { + "source": "iana", + "compressible": true + }, + "application/jrd+json": { + "source": "iana", + "compressible": true + }, + "application/json": { + "source": "iana", + "charset": "UTF-8", + "compressible": true, + "extensions": ["json","map"] + }, + "application/json-patch+json": { + "source": "iana", + "compressible": true + }, + "application/json-seq": { + "source": "iana" + }, + "application/json5": { + "extensions": ["json5"] + }, + "application/jsonml+json": { + "source": "apache", + "compressible": true, + "extensions": ["jsonml"] + }, + "application/jwk+json": { + "source": "iana", + "compressible": true + }, + "application/jwk-set+json": { + "source": "iana", + "compressible": true + }, + "application/jwt": { + "source": "iana" + }, + "application/kpml-request+xml": { + "source": "iana" + }, + "application/kpml-response+xml": { + "source": "iana" + }, + "application/ld+json": { + "source": "iana", + "compressible": true, + "extensions": ["jsonld"] + }, + "application/link-format": { + "source": "iana" + }, + "application/load-control+xml": { + "source": "iana" + }, + "application/lost+xml": { + "source": "iana", + "extensions": ["lostxml"] + }, + "application/lostsync+xml": { + "source": "iana" + }, + "application/lxf": { + "source": "iana" + }, + "application/mac-binhex40": { + "source": "iana", + "extensions": ["hqx"] + }, + "application/mac-compactpro": { + "source": "apache", + "extensions": ["cpt"] + }, + "application/macwriteii": { + "source": "iana" + }, + "application/mads+xml": { + "source": "iana", + "extensions": ["mads"] + }, + "application/manifest+json": { + "charset": "UTF-8", + "compressible": true, + "extensions": ["webmanifest"] + }, + "application/marc": { + "source": "iana", + "extensions": ["mrc"] + }, + "application/marcxml+xml": { + "source": "iana", + "extensions": ["mrcx"] + }, + "application/mathematica": { + "source": "iana", + "extensions": ["ma","nb","mb"] + }, + "application/mathml+xml": { + "source": "iana", + "extensions": ["mathml"] + }, + "application/mathml-content+xml": { + "source": "iana" + }, + "application/mathml-presentation+xml": { + "source": "iana" + }, + "application/mbms-associated-procedure-description+xml": { + "source": "iana" + }, + "application/mbms-deregister+xml": { + "source": "iana" + }, + "application/mbms-envelope+xml": { + "source": "iana" + }, + "application/mbms-msk+xml": { + "source": "iana" + }, + "application/mbms-msk-response+xml": { + "source": "iana" + }, + "application/mbms-protection-description+xml": { + "source": "iana" + }, + "application/mbms-reception-report+xml": { + "source": "iana" + }, + "application/mbms-register+xml": { + "source": "iana" + }, + "application/mbms-register-response+xml": { + "source": "iana" + }, + "application/mbms-schedule+xml": { + "source": "iana" + }, + "application/mbms-user-service-description+xml": { + "source": "iana" + }, + "application/mbox": { + "source": "iana", + "extensions": ["mbox"] + }, + "application/media-policy-dataset+xml": { + "source": "iana" + }, + "application/media_control+xml": { + "source": "iana" + }, + "application/mediaservercontrol+xml": { + "source": "iana", + "extensions": ["mscml"] + }, + "application/merge-patch+json": { + "source": "iana", + "compressible": true + }, + "application/metalink+xml": { + "source": "apache", + "extensions": ["metalink"] + }, + "application/metalink4+xml": { + "source": "iana", + "extensions": ["meta4"] + }, + "application/mets+xml": { + "source": "iana", + "extensions": ["mets"] + }, + "application/mf4": { + "source": "iana" + }, + "application/mikey": { + "source": "iana" + }, + "application/mods+xml": { + "source": "iana", + "extensions": ["mods"] + }, + "application/moss-keys": { + "source": "iana" + }, + "application/moss-signature": { + "source": "iana" + }, + "application/mosskey-data": { + "source": "iana" + }, + "application/mosskey-request": { + "source": "iana" + }, + "application/mp21": { + "source": "iana", + "extensions": ["m21","mp21"] + }, + "application/mp4": { + "source": "iana", + "extensions": ["mp4s","m4p"] + }, + "application/mpeg4-generic": { + "source": "iana" + }, + "application/mpeg4-iod": { + "source": "iana" + }, + "application/mpeg4-iod-xmt": { + "source": "iana" + }, + "application/mrb-consumer+xml": { + "source": "iana" + }, + "application/mrb-publish+xml": { + "source": "iana" + }, + "application/msc-ivr+xml": { + "source": "iana" + }, + "application/msc-mixer+xml": { + "source": "iana" + }, + "application/msword": { + "source": "iana", + "compressible": false, + "extensions": ["doc","dot"] + }, + "application/mxf": { + "source": "iana", + "extensions": ["mxf"] + }, + "application/nasdata": { + "source": "iana" + }, + "application/news-checkgroups": { + "source": "iana" + }, + "application/news-groupinfo": { + "source": "iana" + }, + "application/news-transmission": { + "source": "iana" + }, + "application/nlsml+xml": { + "source": "iana" + }, + "application/nss": { + "source": "iana" + }, + "application/ocsp-request": { + "source": "iana" + }, + "application/ocsp-response": { + "source": "iana" + }, + "application/octet-stream": { + "source": "iana", + "compressible": false, + "extensions": ["bin","dms","lrf","mar","so","dist","distz","pkg","bpk","dump","elc","deploy","exe","dll","deb","dmg","iso","img","msi","msp","msm","buffer"] + }, + "application/oda": { + "source": "iana", + "extensions": ["oda"] + }, + "application/odx": { + "source": "iana" + }, + "application/oebps-package+xml": { + "source": "iana", + "extensions": ["opf"] + }, + "application/ogg": { + "source": "iana", + "compressible": false, + "extensions": ["ogx"] + }, + "application/omdoc+xml": { + "source": "apache", + "extensions": ["omdoc"] + }, + "application/onenote": { + "source": "apache", + "extensions": ["onetoc","onetoc2","onetmp","onepkg"] + }, + "application/oxps": { + "source": "iana", + "extensions": ["oxps"] + }, + "application/p2p-overlay+xml": { + "source": "iana" + }, + "application/parityfec": { + "source": "iana" + }, + "application/patch-ops-error+xml": { + "source": "iana", + "extensions": ["xer"] + }, + "application/pdf": { + "source": "iana", + "compressible": false, + "extensions": ["pdf"] + }, + "application/pdx": { + "source": "iana" + }, + "application/pgp-encrypted": { + "source": "iana", + "compressible": false, + "extensions": ["pgp"] + }, + "application/pgp-keys": { + "source": "iana" + }, + "application/pgp-signature": { + "source": "iana", + "extensions": ["asc","sig"] + }, + "application/pics-rules": { + "source": "apache", + "extensions": ["prf"] + }, + "application/pidf+xml": { + "source": "iana" + }, + "application/pidf-diff+xml": { + "source": "iana" + }, + "application/pkcs10": { + "source": "iana", + "extensions": ["p10"] + }, + "application/pkcs12": { + "source": "iana" + }, + "application/pkcs7-mime": { + "source": "iana", + "extensions": ["p7m","p7c"] + }, + "application/pkcs7-signature": { + "source": "iana", + "extensions": ["p7s"] + }, + "application/pkcs8": { + "source": "iana", + "extensions": ["p8"] + }, + "application/pkix-attr-cert": { + "source": "iana", + "extensions": ["ac"] + }, + "application/pkix-cert": { + "source": "iana", + "extensions": ["cer"] + }, + "application/pkix-crl": { + "source": "iana", + "extensions": ["crl"] + }, + "application/pkix-pkipath": { + "source": "iana", + "extensions": ["pkipath"] + }, + "application/pkixcmp": { + "source": "iana", + "extensions": ["pki"] + }, + "application/pls+xml": { + "source": "iana", + "extensions": ["pls"] + }, + "application/poc-settings+xml": { + "source": "iana" + }, + "application/postscript": { + "source": "iana", + "compressible": true, + "extensions": ["ai","eps","ps"] + }, + "application/provenance+xml": { + "source": "iana" + }, + "application/prs.alvestrand.titrax-sheet": { + "source": "iana" + }, + "application/prs.cww": { + "source": "iana", + "extensions": ["cww"] + }, + "application/prs.hpub+zip": { + "source": "iana" + }, + "application/prs.nprend": { + "source": "iana" + }, + "application/prs.plucker": { + "source": "iana" + }, + "application/prs.rdf-xml-crypt": { + "source": "iana" + }, + "application/prs.xsf+xml": { + "source": "iana" + }, + "application/pskc+xml": { + "source": "iana", + "extensions": ["pskcxml"] + }, + "application/qsig": { + "source": "iana" + }, + "application/raptorfec": { + "source": "iana" + }, + "application/rdap+json": { + "source": "iana", + "compressible": true + }, + "application/rdf+xml": { + "source": "iana", + "compressible": true, + "extensions": ["rdf"] + }, + "application/reginfo+xml": { + "source": "iana", + "extensions": ["rif"] + }, + "application/relax-ng-compact-syntax": { + "source": "iana", + "extensions": ["rnc"] + }, + "application/remote-printing": { + "source": "iana" + }, + "application/reputon+json": { + "source": "iana", + "compressible": true + }, + "application/resource-lists+xml": { + "source": "iana", + "extensions": ["rl"] + }, + "application/resource-lists-diff+xml": { + "source": "iana", + "extensions": ["rld"] + }, + "application/rfc+xml": { + "source": "iana" + }, + "application/riscos": { + "source": "iana" + }, + "application/rlmi+xml": { + "source": "iana" + }, + "application/rls-services+xml": { + "source": "iana", + "extensions": ["rs"] + }, + "application/rpki-ghostbusters": { + "source": "iana", + "extensions": ["gbr"] + }, + "application/rpki-manifest": { + "source": "iana", + "extensions": ["mft"] + }, + "application/rpki-roa": { + "source": "iana", + "extensions": ["roa"] + }, + "application/rpki-updown": { + "source": "iana" + }, + "application/rsd+xml": { + "source": "apache", + "extensions": ["rsd"] + }, + "application/rss+xml": { + "source": "apache", + "compressible": true, + "extensions": ["rss"] + }, + "application/rtf": { + "source": "iana", + "compressible": true, + "extensions": ["rtf"] + }, + "application/rtploopback": { + "source": "iana" + }, + "application/rtx": { + "source": "iana" + }, + "application/samlassertion+xml": { + "source": "iana" + }, + "application/samlmetadata+xml": { + "source": "iana" + }, + "application/sbml+xml": { + "source": "iana", + "extensions": ["sbml"] + }, + "application/scaip+xml": { + "source": "iana" + }, + "application/scim+json": { + "source": "iana", + "compressible": true + }, + "application/scvp-cv-request": { + "source": "iana", + "extensions": ["scq"] + }, + "application/scvp-cv-response": { + "source": "iana", + "extensions": ["scs"] + }, + "application/scvp-vp-request": { + "source": "iana", + "extensions": ["spq"] + }, + "application/scvp-vp-response": { + "source": "iana", + "extensions": ["spp"] + }, + "application/sdp": { + "source": "iana", + "extensions": ["sdp"] + }, + "application/sep+xml": { + "source": "iana" + }, + "application/sep-exi": { + "source": "iana" + }, + "application/session-info": { + "source": "iana" + }, + "application/set-payment": { + "source": "iana" + }, + "application/set-payment-initiation": { + "source": "iana", + "extensions": ["setpay"] + }, + "application/set-registration": { + "source": "iana" + }, + "application/set-registration-initiation": { + "source": "iana", + "extensions": ["setreg"] + }, + "application/sgml": { + "source": "iana" + }, + "application/sgml-open-catalog": { + "source": "iana" + }, + "application/shf+xml": { + "source": "iana", + "extensions": ["shf"] + }, + "application/sieve": { + "source": "iana" + }, + "application/simple-filter+xml": { + "source": "iana" + }, + "application/simple-message-summary": { + "source": "iana" + }, + "application/simplesymbolcontainer": { + "source": "iana" + }, + "application/slate": { + "source": "iana" + }, + "application/smil": { + "source": "iana" + }, + "application/smil+xml": { + "source": "iana", + "extensions": ["smi","smil"] + }, + "application/smpte336m": { + "source": "iana" + }, + "application/soap+fastinfoset": { + "source": "iana" + }, + "application/soap+xml": { + "source": "iana", + "compressible": true + }, + "application/sparql-query": { + "source": "iana", + "extensions": ["rq"] + }, + "application/sparql-results+xml": { + "source": "iana", + "extensions": ["srx"] + }, + "application/spirits-event+xml": { + "source": "iana" + }, + "application/sql": { + "source": "iana" + }, + "application/srgs": { + "source": "iana", + "extensions": ["gram"] + }, + "application/srgs+xml": { + "source": "iana", + "extensions": ["grxml"] + }, + "application/sru+xml": { + "source": "iana", + "extensions": ["sru"] + }, + "application/ssdl+xml": { + "source": "apache", + "extensions": ["ssdl"] + }, + "application/ssml+xml": { + "source": "iana", + "extensions": ["ssml"] + }, + "application/tamp-apex-update": { + "source": "iana" + }, + "application/tamp-apex-update-confirm": { + "source": "iana" + }, + "application/tamp-community-update": { + "source": "iana" + }, + "application/tamp-community-update-confirm": { + "source": "iana" + }, + "application/tamp-error": { + "source": "iana" + }, + "application/tamp-sequence-adjust": { + "source": "iana" + }, + "application/tamp-sequence-adjust-confirm": { + "source": "iana" + }, + "application/tamp-status-query": { + "source": "iana" + }, + "application/tamp-status-response": { + "source": "iana" + }, + "application/tamp-update": { + "source": "iana" + }, + "application/tamp-update-confirm": { + "source": "iana" + }, + "application/tar": { + "compressible": true + }, + "application/tei+xml": { + "source": "iana", + "extensions": ["tei","teicorpus"] + }, + "application/thraud+xml": { + "source": "iana", + "extensions": ["tfi"] + }, + "application/timestamp-query": { + "source": "iana" + }, + "application/timestamp-reply": { + "source": "iana" + }, + "application/timestamped-data": { + "source": "iana", + "extensions": ["tsd"] + }, + "application/ttml+xml": { + "source": "iana" + }, + "application/tve-trigger": { + "source": "iana" + }, + "application/ulpfec": { + "source": "iana" + }, + "application/urc-grpsheet+xml": { + "source": "iana" + }, + "application/urc-ressheet+xml": { + "source": "iana" + }, + "application/urc-targetdesc+xml": { + "source": "iana" + }, + "application/urc-uisocketdesc+xml": { + "source": "iana" + }, + "application/vcard+json": { + "source": "iana", + "compressible": true + }, + "application/vcard+xml": { + "source": "iana" + }, + "application/vemmi": { + "source": "iana" + }, + "application/vividence.scriptfile": { + "source": "apache" + }, + "application/vnd.3gpp-prose+xml": { + "source": "iana" + }, + "application/vnd.3gpp-prose-pc3ch+xml": { + "source": "iana" + }, + "application/vnd.3gpp.access-transfer-events+xml": { + "source": "iana" + }, + "application/vnd.3gpp.bsf+xml": { + "source": "iana" + }, + "application/vnd.3gpp.mid-call+xml": { + "source": "iana" + }, + "application/vnd.3gpp.pic-bw-large": { + "source": "iana", + "extensions": ["plb"] + }, + "application/vnd.3gpp.pic-bw-small": { + "source": "iana", + "extensions": ["psb"] + }, + "application/vnd.3gpp.pic-bw-var": { + "source": "iana", + "extensions": ["pvb"] + }, + "application/vnd.3gpp.sms": { + "source": "iana" + }, + "application/vnd.3gpp.srvcc-ext+xml": { + "source": "iana" + }, + "application/vnd.3gpp.srvcc-info+xml": { + "source": "iana" + }, + "application/vnd.3gpp.state-and-event-info+xml": { + "source": "iana" + }, + "application/vnd.3gpp.ussd+xml": { + "source": "iana" + }, + "application/vnd.3gpp2.bcmcsinfo+xml": { + "source": "iana" + }, + "application/vnd.3gpp2.sms": { + "source": "iana" + }, + "application/vnd.3gpp2.tcap": { + "source": "iana", + "extensions": ["tcap"] + }, + "application/vnd.3m.post-it-notes": { + "source": "iana", + "extensions": ["pwn"] + }, + "application/vnd.accpac.simply.aso": { + "source": "iana", + "extensions": ["aso"] + }, + "application/vnd.accpac.simply.imp": { + "source": "iana", + "extensions": ["imp"] + }, + "application/vnd.acucobol": { + "source": "iana", + "extensions": ["acu"] + }, + "application/vnd.acucorp": { + "source": "iana", + "extensions": ["atc","acutc"] + }, + "application/vnd.adobe.air-application-installer-package+zip": { + "source": "apache", + "extensions": ["air"] + }, + "application/vnd.adobe.flash.movie": { + "source": "iana" + }, + "application/vnd.adobe.formscentral.fcdt": { + "source": "iana", + "extensions": ["fcdt"] + }, + "application/vnd.adobe.fxp": { + "source": "iana", + "extensions": ["fxp","fxpl"] + }, + "application/vnd.adobe.partial-upload": { + "source": "iana" + }, + "application/vnd.adobe.xdp+xml": { + "source": "iana", + "extensions": ["xdp"] + }, + "application/vnd.adobe.xfdf": { + "source": "iana", + "extensions": ["xfdf"] + }, + "application/vnd.aether.imp": { + "source": "iana" + }, + "application/vnd.ah-barcode": { + "source": "iana" + }, + "application/vnd.ahead.space": { + "source": "iana", + "extensions": ["ahead"] + }, + "application/vnd.airzip.filesecure.azf": { + "source": "iana", + "extensions": ["azf"] + }, + "application/vnd.airzip.filesecure.azs": { + "source": "iana", + "extensions": ["azs"] + }, + "application/vnd.amazon.ebook": { + "source": "apache", + "extensions": ["azw"] + }, + "application/vnd.americandynamics.acc": { + "source": "iana", + "extensions": ["acc"] + }, + "application/vnd.amiga.ami": { + "source": "iana", + "extensions": ["ami"] + }, + "application/vnd.amundsen.maze+xml": { + "source": "iana" + }, + "application/vnd.android.package-archive": { + "source": "apache", + "compressible": false, + "extensions": ["apk"] + }, + "application/vnd.anki": { + "source": "iana" + }, + "application/vnd.anser-web-certificate-issue-initiation": { + "source": "iana", + "extensions": ["cii"] + }, + "application/vnd.anser-web-funds-transfer-initiation": { + "source": "apache", + "extensions": ["fti"] + }, + "application/vnd.antix.game-component": { + "source": "iana", + "extensions": ["atx"] + }, + "application/vnd.apache.thrift.binary": { + "source": "iana" + }, + "application/vnd.apache.thrift.compact": { + "source": "iana" + }, + "application/vnd.apache.thrift.json": { + "source": "iana" + }, + "application/vnd.api+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.apple.installer+xml": { + "source": "iana", + "extensions": ["mpkg"] + }, + "application/vnd.apple.mpegurl": { + "source": "iana", + "extensions": ["m3u8"] + }, + "application/vnd.apple.pkpass": { + "compressible": false, + "extensions": ["pkpass"] + }, + "application/vnd.arastra.swi": { + "source": "iana" + }, + "application/vnd.aristanetworks.swi": { + "source": "iana", + "extensions": ["swi"] + }, + "application/vnd.artsquare": { + "source": "iana" + }, + "application/vnd.astraea-software.iota": { + "source": "iana", + "extensions": ["iota"] + }, + "application/vnd.audiograph": { + "source": "iana", + "extensions": ["aep"] + }, + "application/vnd.autopackage": { + "source": "iana" + }, + "application/vnd.avistar+xml": { + "source": "iana" + }, + "application/vnd.balsamiq.bmml+xml": { + "source": "iana" + }, + "application/vnd.balsamiq.bmpr": { + "source": "iana" + }, + "application/vnd.bekitzur-stech+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.biopax.rdf+xml": { + "source": "iana" + }, + "application/vnd.blueice.multipass": { + "source": "iana", + "extensions": ["mpm"] + }, + "application/vnd.bluetooth.ep.oob": { + "source": "iana" + }, + "application/vnd.bluetooth.le.oob": { + "source": "iana" + }, + "application/vnd.bmi": { + "source": "iana", + "extensions": ["bmi"] + }, + "application/vnd.businessobjects": { + "source": "iana", + "extensions": ["rep"] + }, + "application/vnd.cab-jscript": { + "source": "iana" + }, + "application/vnd.canon-cpdl": { + "source": "iana" + }, + "application/vnd.canon-lips": { + "source": "iana" + }, + "application/vnd.cendio.thinlinc.clientconf": { + "source": "iana" + }, + "application/vnd.century-systems.tcp_stream": { + "source": "iana" + }, + "application/vnd.chemdraw+xml": { + "source": "iana", + "extensions": ["cdxml"] + }, + "application/vnd.chipnuts.karaoke-mmd": { + "source": "iana", + "extensions": ["mmd"] + }, + "application/vnd.cinderella": { + "source": "iana", + "extensions": ["cdy"] + }, + "application/vnd.cirpack.isdn-ext": { + "source": "iana" + }, + "application/vnd.citationstyles.style+xml": { + "source": "iana" + }, + "application/vnd.claymore": { + "source": "iana", + "extensions": ["cla"] + }, + "application/vnd.cloanto.rp9": { + "source": "iana", + "extensions": ["rp9"] + }, + "application/vnd.clonk.c4group": { + "source": "iana", + "extensions": ["c4g","c4d","c4f","c4p","c4u"] + }, + "application/vnd.cluetrust.cartomobile-config": { + "source": "iana", + "extensions": ["c11amc"] + }, + "application/vnd.cluetrust.cartomobile-config-pkg": { + "source": "iana", + "extensions": ["c11amz"] + }, + "application/vnd.coffeescript": { + "source": "iana" + }, + "application/vnd.collection+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.collection.doc+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.collection.next+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.commerce-battelle": { + "source": "iana" + }, + "application/vnd.commonspace": { + "source": "iana", + "extensions": ["csp"] + }, + "application/vnd.contact.cmsg": { + "source": "iana", + "extensions": ["cdbcmsg"] + }, + "application/vnd.cosmocaller": { + "source": "iana", + "extensions": ["cmc"] + }, + "application/vnd.crick.clicker": { + "source": "iana", + "extensions": ["clkx"] + }, + "application/vnd.crick.clicker.keyboard": { + "source": "iana", + "extensions": ["clkk"] + }, + "application/vnd.crick.clicker.palette": { + "source": "iana", + "extensions": ["clkp"] + }, + "application/vnd.crick.clicker.template": { + "source": "iana", + "extensions": ["clkt"] + }, + "application/vnd.crick.clicker.wordbank": { + "source": "iana", + "extensions": ["clkw"] + }, + "application/vnd.criticaltools.wbs+xml": { + "source": "iana", + "extensions": ["wbs"] + }, + "application/vnd.ctc-posml": { + "source": "iana", + "extensions": ["pml"] + }, + "application/vnd.ctct.ws+xml": { + "source": "iana" + }, + "application/vnd.cups-pdf": { + "source": "iana" + }, + "application/vnd.cups-postscript": { + "source": "iana" + }, + "application/vnd.cups-ppd": { + "source": "iana", + "extensions": ["ppd"] + }, + "application/vnd.cups-raster": { + "source": "iana" + }, + "application/vnd.cups-raw": { + "source": "iana" + }, + "application/vnd.curl": { + "source": "iana" + }, + "application/vnd.curl.car": { + "source": "apache", + "extensions": ["car"] + }, + "application/vnd.curl.pcurl": { + "source": "apache", + "extensions": ["pcurl"] + }, + "application/vnd.cyan.dean.root+xml": { + "source": "iana" + }, + "application/vnd.cybank": { + "source": "iana" + }, + "application/vnd.dart": { + "source": "iana", + "compressible": true, + "extensions": ["dart"] + }, + "application/vnd.data-vision.rdz": { + "source": "iana", + "extensions": ["rdz"] + }, + "application/vnd.debian.binary-package": { + "source": "iana" + }, + "application/vnd.dece.data": { + "source": "iana", + "extensions": ["uvf","uvvf","uvd","uvvd"] + }, + "application/vnd.dece.ttml+xml": { + "source": "iana", + "extensions": ["uvt","uvvt"] + }, + "application/vnd.dece.unspecified": { + "source": "iana", + "extensions": ["uvx","uvvx"] + }, + "application/vnd.dece.zip": { + "source": "iana", + "extensions": ["uvz","uvvz"] + }, + "application/vnd.denovo.fcselayout-link": { + "source": "iana", + "extensions": ["fe_launch"] + }, + "application/vnd.desmume-movie": { + "source": "iana" + }, + "application/vnd.dir-bi.plate-dl-nosuffix": { + "source": "iana" + }, + "application/vnd.dm.delegation+xml": { + "source": "iana" + }, + "application/vnd.dna": { + "source": "iana", + "extensions": ["dna"] + }, + "application/vnd.document+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.dolby.mlp": { + "source": "apache", + "extensions": ["mlp"] + }, + "application/vnd.dolby.mobile.1": { + "source": "iana" + }, + "application/vnd.dolby.mobile.2": { + "source": "iana" + }, + "application/vnd.doremir.scorecloud-binary-document": { + "source": "iana" + }, + "application/vnd.dpgraph": { + "source": "iana", + "extensions": ["dpg"] + }, + "application/vnd.dreamfactory": { + "source": "iana", + "extensions": ["dfac"] + }, + "application/vnd.drive+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.ds-keypoint": { + "source": "apache", + "extensions": ["kpxx"] + }, + "application/vnd.dtg.local": { + "source": "iana" + }, + "application/vnd.dtg.local.flash": { + "source": "iana" + }, + "application/vnd.dtg.local.html": { + "source": "iana" + }, + "application/vnd.dvb.ait": { + "source": "iana", + "extensions": ["ait"] + }, + "application/vnd.dvb.dvbj": { + "source": "iana" + }, + "application/vnd.dvb.esgcontainer": { + "source": "iana" + }, + "application/vnd.dvb.ipdcdftnotifaccess": { + "source": "iana" + }, + "application/vnd.dvb.ipdcesgaccess": { + "source": "iana" + }, + "application/vnd.dvb.ipdcesgaccess2": { + "source": "iana" + }, + "application/vnd.dvb.ipdcesgpdd": { + "source": "iana" + }, + "application/vnd.dvb.ipdcroaming": { + "source": "iana" + }, + "application/vnd.dvb.iptv.alfec-base": { + "source": "iana" + }, + "application/vnd.dvb.iptv.alfec-enhancement": { + "source": "iana" + }, + "application/vnd.dvb.notif-aggregate-root+xml": { + "source": "iana" + }, + "application/vnd.dvb.notif-container+xml": { + "source": "iana" + }, + "application/vnd.dvb.notif-generic+xml": { + "source": "iana" + }, + "application/vnd.dvb.notif-ia-msglist+xml": { + "source": "iana" + }, + "application/vnd.dvb.notif-ia-registration-request+xml": { + "source": "iana" + }, + "application/vnd.dvb.notif-ia-registration-response+xml": { + "source": "iana" + }, + "application/vnd.dvb.notif-init+xml": { + "source": "iana" + }, + "application/vnd.dvb.pfr": { + "source": "iana" + }, + "application/vnd.dvb.service": { + "source": "iana", + "extensions": ["svc"] + }, + "application/vnd.dxr": { + "source": "iana" + }, + "application/vnd.dynageo": { + "source": "iana", + "extensions": ["geo"] + }, + "application/vnd.dzr": { + "source": "iana" + }, + "application/vnd.easykaraoke.cdgdownload": { + "source": "iana" + }, + "application/vnd.ecdis-update": { + "source": "iana" + }, + "application/vnd.ecowin.chart": { + "source": "iana", + "extensions": ["mag"] + }, + "application/vnd.ecowin.filerequest": { + "source": "iana" + }, + "application/vnd.ecowin.fileupdate": { + "source": "iana" + }, + "application/vnd.ecowin.series": { + "source": "iana" + }, + "application/vnd.ecowin.seriesrequest": { + "source": "iana" + }, + "application/vnd.ecowin.seriesupdate": { + "source": "iana" + }, + "application/vnd.emclient.accessrequest+xml": { + "source": "iana" + }, + "application/vnd.enliven": { + "source": "iana", + "extensions": ["nml"] + }, + "application/vnd.enphase.envoy": { + "source": "iana" + }, + "application/vnd.eprints.data+xml": { + "source": "iana" + }, + "application/vnd.epson.esf": { + "source": "iana", + "extensions": ["esf"] + }, + "application/vnd.epson.msf": { + "source": "iana", + "extensions": ["msf"] + }, + "application/vnd.epson.quickanime": { + "source": "iana", + "extensions": ["qam"] + }, + "application/vnd.epson.salt": { + "source": "iana", + "extensions": ["slt"] + }, + "application/vnd.epson.ssf": { + "source": "iana", + "extensions": ["ssf"] + }, + "application/vnd.ericsson.quickcall": { + "source": "iana" + }, + "application/vnd.eszigno3+xml": { + "source": "iana", + "extensions": ["es3","et3"] + }, + "application/vnd.etsi.aoc+xml": { + "source": "iana" + }, + "application/vnd.etsi.asic-e+zip": { + "source": "iana" + }, + "application/vnd.etsi.asic-s+zip": { + "source": "iana" + }, + "application/vnd.etsi.cug+xml": { + "source": "iana" + }, + "application/vnd.etsi.iptvcommand+xml": { + "source": "iana" + }, + "application/vnd.etsi.iptvdiscovery+xml": { + "source": "iana" + }, + "application/vnd.etsi.iptvprofile+xml": { + "source": "iana" + }, + "application/vnd.etsi.iptvsad-bc+xml": { + "source": "iana" + }, + "application/vnd.etsi.iptvsad-cod+xml": { + "source": "iana" + }, + "application/vnd.etsi.iptvsad-npvr+xml": { + "source": "iana" + }, + "application/vnd.etsi.iptvservice+xml": { + "source": "iana" + }, + "application/vnd.etsi.iptvsync+xml": { + "source": "iana" + }, + "application/vnd.etsi.iptvueprofile+xml": { + "source": "iana" + }, + "application/vnd.etsi.mcid+xml": { + "source": "iana" + }, + "application/vnd.etsi.mheg5": { + "source": "iana" + }, + "application/vnd.etsi.overload-control-policy-dataset+xml": { + "source": "iana" + }, + "application/vnd.etsi.pstn+xml": { + "source": "iana" + }, + "application/vnd.etsi.sci+xml": { + "source": "iana" + }, + "application/vnd.etsi.simservs+xml": { + "source": "iana" + }, + "application/vnd.etsi.timestamp-token": { + "source": "iana" + }, + "application/vnd.etsi.tsl+xml": { + "source": "iana" + }, + "application/vnd.etsi.tsl.der": { + "source": "iana" + }, + "application/vnd.eudora.data": { + "source": "iana" + }, + "application/vnd.ezpix-album": { + "source": "iana", + "extensions": ["ez2"] + }, + "application/vnd.ezpix-package": { + "source": "iana", + "extensions": ["ez3"] + }, + "application/vnd.f-secure.mobile": { + "source": "iana" + }, + "application/vnd.fastcopy-disk-image": { + "source": "iana" + }, + "application/vnd.fdf": { + "source": "iana", + "extensions": ["fdf"] + }, + "application/vnd.fdsn.mseed": { + "source": "iana", + "extensions": ["mseed"] + }, + "application/vnd.fdsn.seed": { + "source": "iana", + "extensions": ["seed","dataless"] + }, + "application/vnd.ffsns": { + "source": "iana" + }, + "application/vnd.filmit.zfc": { + "source": "iana" + }, + "application/vnd.fints": { + "source": "iana" + }, + "application/vnd.firemonkeys.cloudcell": { + "source": "iana" + }, + "application/vnd.flographit": { + "source": "iana", + "extensions": ["gph"] + }, + "application/vnd.fluxtime.clip": { + "source": "iana", + "extensions": ["ftc"] + }, + "application/vnd.font-fontforge-sfd": { + "source": "iana" + }, + "application/vnd.framemaker": { + "source": "iana", + "extensions": ["fm","frame","maker","book"] + }, + "application/vnd.frogans.fnc": { + "source": "iana", + "extensions": ["fnc"] + }, + "application/vnd.frogans.ltf": { + "source": "iana", + "extensions": ["ltf"] + }, + "application/vnd.fsc.weblaunch": { + "source": "iana", + "extensions": ["fsc"] + }, + "application/vnd.fujitsu.oasys": { + "source": "iana", + "extensions": ["oas"] + }, + "application/vnd.fujitsu.oasys2": { + "source": "iana", + "extensions": ["oa2"] + }, + "application/vnd.fujitsu.oasys3": { + "source": "iana", + "extensions": ["oa3"] + }, + "application/vnd.fujitsu.oasysgp": { + "source": "iana", + "extensions": ["fg5"] + }, + "application/vnd.fujitsu.oasysprs": { + "source": "iana", + "extensions": ["bh2"] + }, + "application/vnd.fujixerox.art-ex": { + "source": "iana" + }, + "application/vnd.fujixerox.art4": { + "source": "iana" + }, + "application/vnd.fujixerox.ddd": { + "source": "iana", + "extensions": ["ddd"] + }, + "application/vnd.fujixerox.docuworks": { + "source": "iana", + "extensions": ["xdw"] + }, + "application/vnd.fujixerox.docuworks.binder": { + "source": "iana", + "extensions": ["xbd"] + }, + "application/vnd.fujixerox.docuworks.container": { + "source": "iana" + }, + "application/vnd.fujixerox.hbpl": { + "source": "iana" + }, + "application/vnd.fut-misnet": { + "source": "iana" + }, + "application/vnd.fuzzysheet": { + "source": "iana", + "extensions": ["fzs"] + }, + "application/vnd.genomatix.tuxedo": { + "source": "iana", + "extensions": ["txd"] + }, + "application/vnd.geo+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.geocube+xml": { + "source": "iana" + }, + "application/vnd.geogebra.file": { + "source": "iana", + "extensions": ["ggb"] + }, + "application/vnd.geogebra.tool": { + "source": "iana", + "extensions": ["ggt"] + }, + "application/vnd.geometry-explorer": { + "source": "iana", + "extensions": ["gex","gre"] + }, + "application/vnd.geonext": { + "source": "iana", + "extensions": ["gxt"] + }, + "application/vnd.geoplan": { + "source": "iana", + "extensions": ["g2w"] + }, + "application/vnd.geospace": { + "source": "iana", + "extensions": ["g3w"] + }, + "application/vnd.gerber": { + "source": "iana" + }, + "application/vnd.globalplatform.card-content-mgt": { + "source": "iana" + }, + "application/vnd.globalplatform.card-content-mgt-response": { + "source": "iana" + }, + "application/vnd.gmx": { + "source": "iana", + "extensions": ["gmx"] + }, + "application/vnd.google-apps.document": { + "compressible": false, + "extensions": ["gdoc"] + }, + "application/vnd.google-apps.presentation": { + "compressible": false, + "extensions": ["gslides"] + }, + "application/vnd.google-apps.spreadsheet": { + "compressible": false, + "extensions": ["gsheet"] + }, + "application/vnd.google-earth.kml+xml": { + "source": "iana", + "compressible": true, + "extensions": ["kml"] + }, + "application/vnd.google-earth.kmz": { + "source": "iana", + "compressible": false, + "extensions": ["kmz"] + }, + "application/vnd.gov.sk.e-form+xml": { + "source": "iana" + }, + "application/vnd.gov.sk.e-form+zip": { + "source": "iana" + }, + "application/vnd.gov.sk.xmldatacontainer+xml": { + "source": "iana" + }, + "application/vnd.grafeq": { + "source": "iana", + "extensions": ["gqf","gqs"] + }, + "application/vnd.gridmp": { + "source": "iana" + }, + "application/vnd.groove-account": { + "source": "iana", + "extensions": ["gac"] + }, + "application/vnd.groove-help": { + "source": "iana", + "extensions": ["ghf"] + }, + "application/vnd.groove-identity-message": { + "source": "iana", + "extensions": ["gim"] + }, + "application/vnd.groove-injector": { + "source": "iana", + "extensions": ["grv"] + }, + "application/vnd.groove-tool-message": { + "source": "iana", + "extensions": ["gtm"] + }, + "application/vnd.groove-tool-template": { + "source": "iana", + "extensions": ["tpl"] + }, + "application/vnd.groove-vcard": { + "source": "iana", + "extensions": ["vcg"] + }, + "application/vnd.hal+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.hal+xml": { + "source": "iana", + "extensions": ["hal"] + }, + "application/vnd.handheld-entertainment+xml": { + "source": "iana", + "extensions": ["zmm"] + }, + "application/vnd.hbci": { + "source": "iana", + "extensions": ["hbci"] + }, + "application/vnd.hcl-bireports": { + "source": "iana" + }, + "application/vnd.heroku+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.hhe.lesson-player": { + "source": "iana", + "extensions": ["les"] + }, + "application/vnd.hp-hpgl": { + "source": "iana", + "extensions": ["hpgl"] + }, + "application/vnd.hp-hpid": { + "source": "iana", + "extensions": ["hpid"] + }, + "application/vnd.hp-hps": { + "source": "iana", + "extensions": ["hps"] + }, + "application/vnd.hp-jlyt": { + "source": "iana", + "extensions": ["jlt"] + }, + "application/vnd.hp-pcl": { + "source": "iana", + "extensions": ["pcl"] + }, + "application/vnd.hp-pclxl": { + "source": "iana", + "extensions": ["pclxl"] + }, + "application/vnd.httphone": { + "source": "iana" + }, + "application/vnd.hydrostatix.sof-data": { + "source": "iana", + "extensions": ["sfd-hdstx"] + }, + "application/vnd.hyperdrive+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.hzn-3d-crossword": { + "source": "iana" + }, + "application/vnd.ibm.afplinedata": { + "source": "iana" + }, + "application/vnd.ibm.electronic-media": { + "source": "iana" + }, + "application/vnd.ibm.minipay": { + "source": "iana", + "extensions": ["mpy"] + }, + "application/vnd.ibm.modcap": { + "source": "iana", + "extensions": ["afp","listafp","list3820"] + }, + "application/vnd.ibm.rights-management": { + "source": "iana", + "extensions": ["irm"] + }, + "application/vnd.ibm.secure-container": { + "source": "iana", + "extensions": ["sc"] + }, + "application/vnd.iccprofile": { + "source": "iana", + "extensions": ["icc","icm"] + }, + "application/vnd.ieee.1905": { + "source": "iana" + }, + "application/vnd.igloader": { + "source": "iana", + "extensions": ["igl"] + }, + "application/vnd.immervision-ivp": { + "source": "iana", + "extensions": ["ivp"] + }, + "application/vnd.immervision-ivu": { + "source": "iana", + "extensions": ["ivu"] + }, + "application/vnd.ims.imsccv1p1": { + "source": "iana" + }, + "application/vnd.ims.imsccv1p2": { + "source": "iana" + }, + "application/vnd.ims.imsccv1p3": { + "source": "iana" + }, + "application/vnd.ims.lis.v2.result+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.ims.lti.v2.toolconsumerprofile+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.ims.lti.v2.toolproxy+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.ims.lti.v2.toolproxy.id+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.ims.lti.v2.toolsettings+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.ims.lti.v2.toolsettings.simple+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.informedcontrol.rms+xml": { + "source": "iana" + }, + "application/vnd.informix-visionary": { + "source": "iana" + }, + "application/vnd.infotech.project": { + "source": "iana" + }, + "application/vnd.infotech.project+xml": { + "source": "iana" + }, + "application/vnd.innopath.wamp.notification": { + "source": "iana" + }, + "application/vnd.insors.igm": { + "source": "iana", + "extensions": ["igm"] + }, + "application/vnd.intercon.formnet": { + "source": "iana", + "extensions": ["xpw","xpx"] + }, + "application/vnd.intergeo": { + "source": "iana", + "extensions": ["i2g"] + }, + "application/vnd.intertrust.digibox": { + "source": "iana" + }, + "application/vnd.intertrust.nncp": { + "source": "iana" + }, + "application/vnd.intu.qbo": { + "source": "iana", + "extensions": ["qbo"] + }, + "application/vnd.intu.qfx": { + "source": "iana", + "extensions": ["qfx"] + }, + "application/vnd.iptc.g2.catalogitem+xml": { + "source": "iana" + }, + "application/vnd.iptc.g2.conceptitem+xml": { + "source": "iana" + }, + "application/vnd.iptc.g2.knowledgeitem+xml": { + "source": "iana" + }, + "application/vnd.iptc.g2.newsitem+xml": { + "source": "iana" + }, + "application/vnd.iptc.g2.newsmessage+xml": { + "source": "iana" + }, + "application/vnd.iptc.g2.packageitem+xml": { + "source": "iana" + }, + "application/vnd.iptc.g2.planningitem+xml": { + "source": "iana" + }, + "application/vnd.ipunplugged.rcprofile": { + "source": "iana", + "extensions": ["rcprofile"] + }, + "application/vnd.irepository.package+xml": { + "source": "iana", + "extensions": ["irp"] + }, + "application/vnd.is-xpr": { + "source": "iana", + "extensions": ["xpr"] + }, + "application/vnd.isac.fcs": { + "source": "iana", + "extensions": ["fcs"] + }, + "application/vnd.jam": { + "source": "iana", + "extensions": ["jam"] + }, + "application/vnd.japannet-directory-service": { + "source": "iana" + }, + "application/vnd.japannet-jpnstore-wakeup": { + "source": "iana" + }, + "application/vnd.japannet-payment-wakeup": { + "source": "iana" + }, + "application/vnd.japannet-registration": { + "source": "iana" + }, + "application/vnd.japannet-registration-wakeup": { + "source": "iana" + }, + "application/vnd.japannet-setstore-wakeup": { + "source": "iana" + }, + "application/vnd.japannet-verification": { + "source": "iana" + }, + "application/vnd.japannet-verification-wakeup": { + "source": "iana" + }, + "application/vnd.jcp.javame.midlet-rms": { + "source": "iana", + "extensions": ["rms"] + }, + "application/vnd.jisp": { + "source": "iana", + "extensions": ["jisp"] + }, + "application/vnd.joost.joda-archive": { + "source": "iana", + "extensions": ["joda"] + }, + "application/vnd.jsk.isdn-ngn": { + "source": "iana" + }, + "application/vnd.kahootz": { + "source": "iana", + "extensions": ["ktz","ktr"] + }, + "application/vnd.kde.karbon": { + "source": "iana", + "extensions": ["karbon"] + }, + "application/vnd.kde.kchart": { + "source": "iana", + "extensions": ["chrt"] + }, + "application/vnd.kde.kformula": { + "source": "iana", + "extensions": ["kfo"] + }, + "application/vnd.kde.kivio": { + "source": "iana", + "extensions": ["flw"] + }, + "application/vnd.kde.kontour": { + "source": "iana", + "extensions": ["kon"] + }, + "application/vnd.kde.kpresenter": { + "source": "iana", + "extensions": ["kpr","kpt"] + }, + "application/vnd.kde.kspread": { + "source": "iana", + "extensions": ["ksp"] + }, + "application/vnd.kde.kword": { + "source": "iana", + "extensions": ["kwd","kwt"] + }, + "application/vnd.kenameaapp": { + "source": "iana", + "extensions": ["htke"] + }, + "application/vnd.kidspiration": { + "source": "iana", + "extensions": ["kia"] + }, + "application/vnd.kinar": { + "source": "iana", + "extensions": ["kne","knp"] + }, + "application/vnd.koan": { + "source": "iana", + "extensions": ["skp","skd","skt","skm"] + }, + "application/vnd.kodak-descriptor": { + "source": "iana", + "extensions": ["sse"] + }, + "application/vnd.las.las+xml": { + "source": "iana", + "extensions": ["lasxml"] + }, + "application/vnd.liberty-request+xml": { + "source": "iana" + }, + "application/vnd.llamagraphics.life-balance.desktop": { + "source": "iana", + "extensions": ["lbd"] + }, + "application/vnd.llamagraphics.life-balance.exchange+xml": { + "source": "iana", + "extensions": ["lbe"] + }, + "application/vnd.lotus-1-2-3": { + "source": "iana", + "extensions": ["123"] + }, + "application/vnd.lotus-approach": { + "source": "iana", + "extensions": ["apr"] + }, + "application/vnd.lotus-freelance": { + "source": "iana", + "extensions": ["pre"] + }, + "application/vnd.lotus-notes": { + "source": "iana", + "extensions": ["nsf"] + }, + "application/vnd.lotus-organizer": { + "source": "iana", + "extensions": ["org"] + }, + "application/vnd.lotus-screencam": { + "source": "iana", + "extensions": ["scm"] + }, + "application/vnd.lotus-wordpro": { + "source": "iana", + "extensions": ["lwp"] + }, + "application/vnd.macports.portpkg": { + "source": "iana", + "extensions": ["portpkg"] + }, + "application/vnd.mapbox-vector-tile": { + "source": "iana" + }, + "application/vnd.marlin.drm.actiontoken+xml": { + "source": "iana" + }, + "application/vnd.marlin.drm.conftoken+xml": { + "source": "iana" + }, + "application/vnd.marlin.drm.license+xml": { + "source": "iana" + }, + "application/vnd.marlin.drm.mdcf": { + "source": "iana" + }, + "application/vnd.mason+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.maxmind.maxmind-db": { + "source": "iana" + }, + "application/vnd.mcd": { + "source": "iana", + "extensions": ["mcd"] + }, + "application/vnd.medcalcdata": { + "source": "iana", + "extensions": ["mc1"] + }, + "application/vnd.mediastation.cdkey": { + "source": "iana", + "extensions": ["cdkey"] + }, + "application/vnd.meridian-slingshot": { + "source": "iana" + }, + "application/vnd.mfer": { + "source": "iana", + "extensions": ["mwf"] + }, + "application/vnd.mfmp": { + "source": "iana", + "extensions": ["mfm"] + }, + "application/vnd.micro+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.micrografx.flo": { + "source": "iana", + "extensions": ["flo"] + }, + "application/vnd.micrografx.igx": { + "source": "iana", + "extensions": ["igx"] + }, + "application/vnd.microsoft.portable-executable": { + "source": "iana" + }, + "application/vnd.miele+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.mif": { + "source": "iana", + "extensions": ["mif"] + }, + "application/vnd.minisoft-hp3000-save": { + "source": "iana" + }, + "application/vnd.mitsubishi.misty-guard.trustweb": { + "source": "iana" + }, + "application/vnd.mobius.daf": { + "source": "iana", + "extensions": ["daf"] + }, + "application/vnd.mobius.dis": { + "source": "iana", + "extensions": ["dis"] + }, + "application/vnd.mobius.mbk": { + "source": "iana", + "extensions": ["mbk"] + }, + "application/vnd.mobius.mqy": { + "source": "iana", + "extensions": ["mqy"] + }, + "application/vnd.mobius.msl": { + "source": "iana", + "extensions": ["msl"] + }, + "application/vnd.mobius.plc": { + "source": "iana", + "extensions": ["plc"] + }, + "application/vnd.mobius.txf": { + "source": "iana", + "extensions": ["txf"] + }, + "application/vnd.mophun.application": { + "source": "iana", + "extensions": ["mpn"] + }, + "application/vnd.mophun.certificate": { + "source": "iana", + "extensions": ["mpc"] + }, + "application/vnd.motorola.flexsuite": { + "source": "iana" + }, + "application/vnd.motorola.flexsuite.adsi": { + "source": "iana" + }, + "application/vnd.motorola.flexsuite.fis": { + "source": "iana" + }, + "application/vnd.motorola.flexsuite.gotap": { + "source": "iana" + }, + "application/vnd.motorola.flexsuite.kmr": { + "source": "iana" + }, + "application/vnd.motorola.flexsuite.ttc": { + "source": "iana" + }, + "application/vnd.motorola.flexsuite.wem": { + "source": "iana" + }, + "application/vnd.motorola.iprm": { + "source": "iana" + }, + "application/vnd.mozilla.xul+xml": { + "source": "iana", + "compressible": true, + "extensions": ["xul"] + }, + "application/vnd.ms-3mfdocument": { + "source": "iana" + }, + "application/vnd.ms-artgalry": { + "source": "iana", + "extensions": ["cil"] + }, + "application/vnd.ms-asf": { + "source": "iana" + }, + "application/vnd.ms-cab-compressed": { + "source": "iana", + "extensions": ["cab"] + }, + "application/vnd.ms-color.iccprofile": { + "source": "apache" + }, + "application/vnd.ms-excel": { + "source": "iana", + "compressible": false, + "extensions": ["xls","xlm","xla","xlc","xlt","xlw"] + }, + "application/vnd.ms-excel.addin.macroenabled.12": { + "source": "iana", + "extensions": ["xlam"] + }, + "application/vnd.ms-excel.sheet.binary.macroenabled.12": { + "source": "iana", + "extensions": ["xlsb"] + }, + "application/vnd.ms-excel.sheet.macroenabled.12": { + "source": "iana", + "extensions": ["xlsm"] + }, + "application/vnd.ms-excel.template.macroenabled.12": { + "source": "iana", + "extensions": ["xltm"] + }, + "application/vnd.ms-fontobject": { + "source": "iana", + "compressible": true, + "extensions": ["eot"] + }, + "application/vnd.ms-htmlhelp": { + "source": "iana", + "extensions": ["chm"] + }, + "application/vnd.ms-ims": { + "source": "iana", + "extensions": ["ims"] + }, + "application/vnd.ms-lrm": { + "source": "iana", + "extensions": ["lrm"] + }, + "application/vnd.ms-office.activex+xml": { + "source": "iana" + }, + "application/vnd.ms-officetheme": { + "source": "iana", + "extensions": ["thmx"] + }, + "application/vnd.ms-opentype": { + "source": "apache", + "compressible": true + }, + "application/vnd.ms-package.obfuscated-opentype": { + "source": "apache" + }, + "application/vnd.ms-pki.seccat": { + "source": "apache", + "extensions": ["cat"] + }, + "application/vnd.ms-pki.stl": { + "source": "apache", + "extensions": ["stl"] + }, + "application/vnd.ms-playready.initiator+xml": { + "source": "iana" + }, + "application/vnd.ms-powerpoint": { + "source": "iana", + "compressible": false, + "extensions": ["ppt","pps","pot"] + }, + "application/vnd.ms-powerpoint.addin.macroenabled.12": { + "source": "iana", + "extensions": ["ppam"] + }, + "application/vnd.ms-powerpoint.presentation.macroenabled.12": { + "source": "iana", + "extensions": ["pptm"] + }, + "application/vnd.ms-powerpoint.slide.macroenabled.12": { + "source": "iana", + "extensions": ["sldm"] + }, + "application/vnd.ms-powerpoint.slideshow.macroenabled.12": { + "source": "iana", + "extensions": ["ppsm"] + }, + "application/vnd.ms-powerpoint.template.macroenabled.12": { + "source": "iana", + "extensions": ["potm"] + }, + "application/vnd.ms-printdevicecapabilities+xml": { + "source": "iana" + }, + "application/vnd.ms-printing.printticket+xml": { + "source": "apache" + }, + "application/vnd.ms-project": { + "source": "iana", + "extensions": ["mpp","mpt"] + }, + "application/vnd.ms-tnef": { + "source": "iana" + }, + "application/vnd.ms-windows.devicepairing": { + "source": "iana" + }, + "application/vnd.ms-windows.nwprinting.oob": { + "source": "iana" + }, + "application/vnd.ms-windows.printerpairing": { + "source": "iana" + }, + "application/vnd.ms-windows.wsd.oob": { + "source": "iana" + }, + "application/vnd.ms-wmdrm.lic-chlg-req": { + "source": "iana" + }, + "application/vnd.ms-wmdrm.lic-resp": { + "source": "iana" + }, + "application/vnd.ms-wmdrm.meter-chlg-req": { + "source": "iana" + }, + "application/vnd.ms-wmdrm.meter-resp": { + "source": "iana" + }, + "application/vnd.ms-word.document.macroenabled.12": { + "source": "iana", + "extensions": ["docm"] + }, + "application/vnd.ms-word.template.macroenabled.12": { + "source": "iana", + "extensions": ["dotm"] + }, + "application/vnd.ms-works": { + "source": "iana", + "extensions": ["wps","wks","wcm","wdb"] + }, + "application/vnd.ms-wpl": { + "source": "iana", + "extensions": ["wpl"] + }, + "application/vnd.ms-xpsdocument": { + "source": "iana", + "compressible": false, + "extensions": ["xps"] + }, + "application/vnd.msa-disk-image": { + "source": "iana" + }, + "application/vnd.mseq": { + "source": "iana", + "extensions": ["mseq"] + }, + "application/vnd.msign": { + "source": "iana" + }, + "application/vnd.multiad.creator": { + "source": "iana" + }, + "application/vnd.multiad.creator.cif": { + "source": "iana" + }, + "application/vnd.music-niff": { + "source": "iana" + }, + "application/vnd.musician": { + "source": "iana", + "extensions": ["mus"] + }, + "application/vnd.muvee.style": { + "source": "iana", + "extensions": ["msty"] + }, + "application/vnd.mynfc": { + "source": "iana", + "extensions": ["taglet"] + }, + "application/vnd.ncd.control": { + "source": "iana" + }, + "application/vnd.ncd.reference": { + "source": "iana" + }, + "application/vnd.nervana": { + "source": "iana" + }, + "application/vnd.netfpx": { + "source": "iana" + }, + "application/vnd.neurolanguage.nlu": { + "source": "iana", + "extensions": ["nlu"] + }, + "application/vnd.nintendo.nitro.rom": { + "source": "iana" + }, + "application/vnd.nintendo.snes.rom": { + "source": "iana" + }, + "application/vnd.nitf": { + "source": "iana", + "extensions": ["ntf","nitf"] + }, + "application/vnd.noblenet-directory": { + "source": "iana", + "extensions": ["nnd"] + }, + "application/vnd.noblenet-sealer": { + "source": "iana", + "extensions": ["nns"] + }, + "application/vnd.noblenet-web": { + "source": "iana", + "extensions": ["nnw"] + }, + "application/vnd.nokia.catalogs": { + "source": "iana" + }, + "application/vnd.nokia.conml+wbxml": { + "source": "iana" + }, + "application/vnd.nokia.conml+xml": { + "source": "iana" + }, + "application/vnd.nokia.iptv.config+xml": { + "source": "iana" + }, + "application/vnd.nokia.isds-radio-presets": { + "source": "iana" + }, + "application/vnd.nokia.landmark+wbxml": { + "source": "iana" + }, + "application/vnd.nokia.landmark+xml": { + "source": "iana" + }, + "application/vnd.nokia.landmarkcollection+xml": { + "source": "iana" + }, + "application/vnd.nokia.n-gage.ac+xml": { + "source": "iana" + }, + "application/vnd.nokia.n-gage.data": { + "source": "iana", + "extensions": ["ngdat"] + }, + "application/vnd.nokia.n-gage.symbian.install": { + "source": "iana", + "extensions": ["n-gage"] + }, + "application/vnd.nokia.ncd": { + "source": "iana" + }, + "application/vnd.nokia.pcd+wbxml": { + "source": "iana" + }, + "application/vnd.nokia.pcd+xml": { + "source": "iana" + }, + "application/vnd.nokia.radio-preset": { + "source": "iana", + "extensions": ["rpst"] + }, + "application/vnd.nokia.radio-presets": { + "source": "iana", + "extensions": ["rpss"] + }, + "application/vnd.novadigm.edm": { + "source": "iana", + "extensions": ["edm"] + }, + "application/vnd.novadigm.edx": { + "source": "iana", + "extensions": ["edx"] + }, + "application/vnd.novadigm.ext": { + "source": "iana", + "extensions": ["ext"] + }, + "application/vnd.ntt-local.content-share": { + "source": "iana" + }, + "application/vnd.ntt-local.file-transfer": { + "source": "iana" + }, + "application/vnd.ntt-local.ogw_remote-access": { + "source": "iana" + }, + "application/vnd.ntt-local.sip-ta_remote": { + "source": "iana" + }, + "application/vnd.ntt-local.sip-ta_tcp_stream": { + "source": "iana" + }, + "application/vnd.oasis.opendocument.chart": { + "source": "iana", + "extensions": ["odc"] + }, + "application/vnd.oasis.opendocument.chart-template": { + "source": "iana", + "extensions": ["otc"] + }, + "application/vnd.oasis.opendocument.database": { + "source": "iana", + "extensions": ["odb"] + }, + "application/vnd.oasis.opendocument.formula": { + "source": "iana", + "extensions": ["odf"] + }, + "application/vnd.oasis.opendocument.formula-template": { + "source": "iana", + "extensions": ["odft"] + }, + "application/vnd.oasis.opendocument.graphics": { + "source": "iana", + "compressible": false, + "extensions": ["odg"] + }, + "application/vnd.oasis.opendocument.graphics-template": { + "source": "iana", + "extensions": ["otg"] + }, + "application/vnd.oasis.opendocument.image": { + "source": "iana", + "extensions": ["odi"] + }, + "application/vnd.oasis.opendocument.image-template": { + "source": "iana", + "extensions": ["oti"] + }, + "application/vnd.oasis.opendocument.presentation": { + "source": "iana", + "compressible": false, + "extensions": ["odp"] + }, + "application/vnd.oasis.opendocument.presentation-template": { + "source": "iana", + "extensions": ["otp"] + }, + "application/vnd.oasis.opendocument.spreadsheet": { + "source": "iana", + "compressible": false, + "extensions": ["ods"] + }, + "application/vnd.oasis.opendocument.spreadsheet-template": { + "source": "iana", + "extensions": ["ots"] + }, + "application/vnd.oasis.opendocument.text": { + "source": "iana", + "compressible": false, + "extensions": ["odt"] + }, + "application/vnd.oasis.opendocument.text-master": { + "source": "iana", + "extensions": ["odm"] + }, + "application/vnd.oasis.opendocument.text-template": { + "source": "iana", + "extensions": ["ott"] + }, + "application/vnd.oasis.opendocument.text-web": { + "source": "iana", + "extensions": ["oth"] + }, + "application/vnd.obn": { + "source": "iana" + }, + "application/vnd.oftn.l10n+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.oipf.contentaccessdownload+xml": { + "source": "iana" + }, + "application/vnd.oipf.contentaccessstreaming+xml": { + "source": "iana" + }, + "application/vnd.oipf.cspg-hexbinary": { + "source": "iana" + }, + "application/vnd.oipf.dae.svg+xml": { + "source": "iana" + }, + "application/vnd.oipf.dae.xhtml+xml": { + "source": "iana" + }, + "application/vnd.oipf.mippvcontrolmessage+xml": { + "source": "iana" + }, + "application/vnd.oipf.pae.gem": { + "source": "iana" + }, + "application/vnd.oipf.spdiscovery+xml": { + "source": "iana" + }, + "application/vnd.oipf.spdlist+xml": { + "source": "iana" + }, + "application/vnd.oipf.ueprofile+xml": { + "source": "iana" + }, + "application/vnd.oipf.userprofile+xml": { + "source": "iana" + }, + "application/vnd.olpc-sugar": { + "source": "iana", + "extensions": ["xo"] + }, + "application/vnd.oma-scws-config": { + "source": "iana" + }, + "application/vnd.oma-scws-http-request": { + "source": "iana" + }, + "application/vnd.oma-scws-http-response": { + "source": "iana" + }, + "application/vnd.oma.bcast.associated-procedure-parameter+xml": { + "source": "iana" + }, + "application/vnd.oma.bcast.drm-trigger+xml": { + "source": "iana" + }, + "application/vnd.oma.bcast.imd+xml": { + "source": "iana" + }, + "application/vnd.oma.bcast.ltkm": { + "source": "iana" + }, + "application/vnd.oma.bcast.notification+xml": { + "source": "iana" + }, + "application/vnd.oma.bcast.provisioningtrigger": { + "source": "iana" + }, + "application/vnd.oma.bcast.sgboot": { + "source": "iana" + }, + "application/vnd.oma.bcast.sgdd+xml": { + "source": "iana" + }, + "application/vnd.oma.bcast.sgdu": { + "source": "iana" + }, + "application/vnd.oma.bcast.simple-symbol-container": { + "source": "iana" + }, + "application/vnd.oma.bcast.smartcard-trigger+xml": { + "source": "iana" + }, + "application/vnd.oma.bcast.sprov+xml": { + "source": "iana" + }, + "application/vnd.oma.bcast.stkm": { + "source": "iana" + }, + "application/vnd.oma.cab-address-book+xml": { + "source": "iana" + }, + "application/vnd.oma.cab-feature-handler+xml": { + "source": "iana" + }, + "application/vnd.oma.cab-pcc+xml": { + "source": "iana" + }, + "application/vnd.oma.cab-subs-invite+xml": { + "source": "iana" + }, + "application/vnd.oma.cab-user-prefs+xml": { + "source": "iana" + }, + "application/vnd.oma.dcd": { + "source": "iana" + }, + "application/vnd.oma.dcdc": { + "source": "iana" + }, + "application/vnd.oma.dd2+xml": { + "source": "iana", + "extensions": ["dd2"] + }, + "application/vnd.oma.drm.risd+xml": { + "source": "iana" + }, + "application/vnd.oma.group-usage-list+xml": { + "source": "iana" + }, + "application/vnd.oma.pal+xml": { + "source": "iana" + }, + "application/vnd.oma.poc.detailed-progress-report+xml": { + "source": "iana" + }, + "application/vnd.oma.poc.final-report+xml": { + "source": "iana" + }, + "application/vnd.oma.poc.groups+xml": { + "source": "iana" + }, + "application/vnd.oma.poc.invocation-descriptor+xml": { + "source": "iana" + }, + "application/vnd.oma.poc.optimized-progress-report+xml": { + "source": "iana" + }, + "application/vnd.oma.push": { + "source": "iana" + }, + "application/vnd.oma.scidm.messages+xml": { + "source": "iana" + }, + "application/vnd.oma.xcap-directory+xml": { + "source": "iana" + }, + "application/vnd.omads-email+xml": { + "source": "iana" + }, + "application/vnd.omads-file+xml": { + "source": "iana" + }, + "application/vnd.omads-folder+xml": { + "source": "iana" + }, + "application/vnd.omaloc-supl-init": { + "source": "iana" + }, + "application/vnd.openblox.game+xml": { + "source": "iana" + }, + "application/vnd.openblox.game-binary": { + "source": "iana" + }, + "application/vnd.openeye.oeb": { + "source": "iana" + }, + "application/vnd.openofficeorg.extension": { + "source": "apache", + "extensions": ["oxt"] + }, + "application/vnd.openxmlformats-officedocument.custom-properties+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.customxmlproperties+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.drawing+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.drawingml.chart+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.drawingml.diagramcolors+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.drawingml.diagramdata+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.drawingml.diagramlayout+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.drawingml.diagramstyle+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.extended-properties+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.presentationml-template": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.presentationml.commentauthors+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.presentationml.comments+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.presentationml.handoutmaster+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.presentationml.notesmaster+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.presentationml.notesslide+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.presentationml.presentation": { + "source": "iana", + "compressible": false, + "extensions": ["pptx"] + }, + "application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.presentationml.presprops+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.presentationml.slide": { + "source": "iana", + "extensions": ["sldx"] + }, + "application/vnd.openxmlformats-officedocument.presentationml.slide+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.presentationml.slidelayout+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.presentationml.slidemaster+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.presentationml.slideshow": { + "source": "iana", + "extensions": ["ppsx"] + }, + "application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.presentationml.slideupdateinfo+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.presentationml.tablestyles+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.presentationml.tags+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.presentationml.template": { + "source": "apache", + "extensions": ["potx"] + }, + "application/vnd.openxmlformats-officedocument.presentationml.template.main+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.presentationml.viewprops+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml-template": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.calcchain+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.externallink+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcachedefinition+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcacherecords+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.pivottable+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.querytable+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.revisionheaders+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.revisionlog+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.sharedstrings+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet": { + "source": "iana", + "compressible": false, + "extensions": ["xlsx"] + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.sheetmetadata+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.tablesinglecells+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.template": { + "source": "apache", + "extensions": ["xltx"] + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.usernames+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.volatiledependencies+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.theme+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.themeoverride+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.vmldrawing": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.wordprocessingml-template": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.wordprocessingml.document": { + "source": "iana", + "compressible": false, + "extensions": ["docx"] + }, + "application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.wordprocessingml.fonttable+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.wordprocessingml.template": { + "source": "apache", + "extensions": ["dotx"] + }, + "application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.wordprocessingml.websettings+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-package.core-properties+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml": { + "source": "iana" + }, + "application/vnd.openxmlformats-package.relationships+xml": { + "source": "iana" + }, + "application/vnd.oracle.resource+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.orange.indata": { + "source": "iana" + }, + "application/vnd.osa.netdeploy": { + "source": "iana" + }, + "application/vnd.osgeo.mapguide.package": { + "source": "iana", + "extensions": ["mgp"] + }, + "application/vnd.osgi.bundle": { + "source": "iana" + }, + "application/vnd.osgi.dp": { + "source": "iana", + "extensions": ["dp"] + }, + "application/vnd.osgi.subsystem": { + "source": "iana", + "extensions": ["esa"] + }, + "application/vnd.otps.ct-kip+xml": { + "source": "iana" + }, + "application/vnd.oxli.countgraph": { + "source": "iana" + }, + "application/vnd.pagerduty+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.palm": { + "source": "iana", + "extensions": ["pdb","pqa","oprc"] + }, + "application/vnd.panoply": { + "source": "iana" + }, + "application/vnd.paos+xml": { + "source": "iana" + }, + "application/vnd.paos.xml": { + "source": "apache" + }, + "application/vnd.pawaafile": { + "source": "iana", + "extensions": ["paw"] + }, + "application/vnd.pcos": { + "source": "iana" + }, + "application/vnd.pg.format": { + "source": "iana", + "extensions": ["str"] + }, + "application/vnd.pg.osasli": { + "source": "iana", + "extensions": ["ei6"] + }, + "application/vnd.piaccess.application-licence": { + "source": "iana" + }, + "application/vnd.picsel": { + "source": "iana", + "extensions": ["efif"] + }, + "application/vnd.pmi.widget": { + "source": "iana", + "extensions": ["wg"] + }, + "application/vnd.poc.group-advertisement+xml": { + "source": "iana" + }, + "application/vnd.pocketlearn": { + "source": "iana", + "extensions": ["plf"] + }, + "application/vnd.powerbuilder6": { + "source": "iana", + "extensions": ["pbd"] + }, + "application/vnd.powerbuilder6-s": { + "source": "iana" + }, + "application/vnd.powerbuilder7": { + "source": "iana" + }, + "application/vnd.powerbuilder7-s": { + "source": "iana" + }, + "application/vnd.powerbuilder75": { + "source": "iana" + }, + "application/vnd.powerbuilder75-s": { + "source": "iana" + }, + "application/vnd.preminet": { + "source": "iana" + }, + "application/vnd.previewsystems.box": { + "source": "iana", + "extensions": ["box"] + }, + "application/vnd.proteus.magazine": { + "source": "iana", + "extensions": ["mgz"] + }, + "application/vnd.publishare-delta-tree": { + "source": "iana", + "extensions": ["qps"] + }, + "application/vnd.pvi.ptid1": { + "source": "iana", + "extensions": ["ptid"] + }, + "application/vnd.pwg-multiplexed": { + "source": "iana" + }, + "application/vnd.pwg-xhtml-print+xml": { + "source": "iana" + }, + "application/vnd.qualcomm.brew-app-res": { + "source": "iana" + }, + "application/vnd.quark.quarkxpress": { + "source": "iana", + "extensions": ["qxd","qxt","qwd","qwt","qxl","qxb"] + }, + "application/vnd.quobject-quoxdocument": { + "source": "iana" + }, + "application/vnd.radisys.moml+xml": { + "source": "iana" + }, + "application/vnd.radisys.msml+xml": { + "source": "iana" + }, + "application/vnd.radisys.msml-audit+xml": { + "source": "iana" + }, + "application/vnd.radisys.msml-audit-conf+xml": { + "source": "iana" + }, + "application/vnd.radisys.msml-audit-conn+xml": { + "source": "iana" + }, + "application/vnd.radisys.msml-audit-dialog+xml": { + "source": "iana" + }, + "application/vnd.radisys.msml-audit-stream+xml": { + "source": "iana" + }, + "application/vnd.radisys.msml-conf+xml": { + "source": "iana" + }, + "application/vnd.radisys.msml-dialog+xml": { + "source": "iana" + }, + "application/vnd.radisys.msml-dialog-base+xml": { + "source": "iana" + }, + "application/vnd.radisys.msml-dialog-fax-detect+xml": { + "source": "iana" + }, + "application/vnd.radisys.msml-dialog-fax-sendrecv+xml": { + "source": "iana" + }, + "application/vnd.radisys.msml-dialog-group+xml": { + "source": "iana" + }, + "application/vnd.radisys.msml-dialog-speech+xml": { + "source": "iana" + }, + "application/vnd.radisys.msml-dialog-transform+xml": { + "source": "iana" + }, + "application/vnd.rainstor.data": { + "source": "iana" + }, + "application/vnd.rapid": { + "source": "iana" + }, + "application/vnd.realvnc.bed": { + "source": "iana", + "extensions": ["bed"] + }, + "application/vnd.recordare.musicxml": { + "source": "iana", + "extensions": ["mxl"] + }, + "application/vnd.recordare.musicxml+xml": { + "source": "iana", + "extensions": ["musicxml"] + }, + "application/vnd.renlearn.rlprint": { + "source": "iana" + }, + "application/vnd.rig.cryptonote": { + "source": "iana", + "extensions": ["cryptonote"] + }, + "application/vnd.rim.cod": { + "source": "apache", + "extensions": ["cod"] + }, + "application/vnd.rn-realmedia": { + "source": "apache", + "extensions": ["rm"] + }, + "application/vnd.rn-realmedia-vbr": { + "source": "apache", + "extensions": ["rmvb"] + }, + "application/vnd.route66.link66+xml": { + "source": "iana", + "extensions": ["link66"] + }, + "application/vnd.rs-274x": { + "source": "iana" + }, + "application/vnd.ruckus.download": { + "source": "iana" + }, + "application/vnd.s3sms": { + "source": "iana" + }, + "application/vnd.sailingtracker.track": { + "source": "iana", + "extensions": ["st"] + }, + "application/vnd.sbm.cid": { + "source": "iana" + }, + "application/vnd.sbm.mid2": { + "source": "iana" + }, + "application/vnd.scribus": { + "source": "iana" + }, + "application/vnd.sealed.3df": { + "source": "iana" + }, + "application/vnd.sealed.csf": { + "source": "iana" + }, + "application/vnd.sealed.doc": { + "source": "iana" + }, + "application/vnd.sealed.eml": { + "source": "iana" + }, + "application/vnd.sealed.mht": { + "source": "iana" + }, + "application/vnd.sealed.net": { + "source": "iana" + }, + "application/vnd.sealed.ppt": { + "source": "iana" + }, + "application/vnd.sealed.tiff": { + "source": "iana" + }, + "application/vnd.sealed.xls": { + "source": "iana" + }, + "application/vnd.sealedmedia.softseal.html": { + "source": "iana" + }, + "application/vnd.sealedmedia.softseal.pdf": { + "source": "iana" + }, + "application/vnd.seemail": { + "source": "iana", + "extensions": ["see"] + }, + "application/vnd.sema": { + "source": "iana", + "extensions": ["sema"] + }, + "application/vnd.semd": { + "source": "iana", + "extensions": ["semd"] + }, + "application/vnd.semf": { + "source": "iana", + "extensions": ["semf"] + }, + "application/vnd.shana.informed.formdata": { + "source": "iana", + "extensions": ["ifm"] + }, + "application/vnd.shana.informed.formtemplate": { + "source": "iana", + "extensions": ["itp"] + }, + "application/vnd.shana.informed.interchange": { + "source": "iana", + "extensions": ["iif"] + }, + "application/vnd.shana.informed.package": { + "source": "iana", + "extensions": ["ipk"] + }, + "application/vnd.simtech-mindmapper": { + "source": "iana", + "extensions": ["twd","twds"] + }, + "application/vnd.siren+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.smaf": { + "source": "iana", + "extensions": ["mmf"] + }, + "application/vnd.smart.notebook": { + "source": "iana" + }, + "application/vnd.smart.teacher": { + "source": "iana", + "extensions": ["teacher"] + }, + "application/vnd.software602.filler.form+xml": { + "source": "iana" + }, + "application/vnd.software602.filler.form-xml-zip": { + "source": "iana" + }, + "application/vnd.solent.sdkm+xml": { + "source": "iana", + "extensions": ["sdkm","sdkd"] + }, + "application/vnd.spotfire.dxp": { + "source": "iana", + "extensions": ["dxp"] + }, + "application/vnd.spotfire.sfs": { + "source": "iana", + "extensions": ["sfs"] + }, + "application/vnd.sss-cod": { + "source": "iana" + }, + "application/vnd.sss-dtf": { + "source": "iana" + }, + "application/vnd.sss-ntf": { + "source": "iana" + }, + "application/vnd.stardivision.calc": { + "source": "apache", + "extensions": ["sdc"] + }, + "application/vnd.stardivision.draw": { + "source": "apache", + "extensions": ["sda"] + }, + "application/vnd.stardivision.impress": { + "source": "apache", + "extensions": ["sdd"] + }, + "application/vnd.stardivision.math": { + "source": "apache", + "extensions": ["smf"] + }, + "application/vnd.stardivision.writer": { + "source": "apache", + "extensions": ["sdw","vor"] + }, + "application/vnd.stardivision.writer-global": { + "source": "apache", + "extensions": ["sgl"] + }, + "application/vnd.stepmania.package": { + "source": "iana", + "extensions": ["smzip"] + }, + "application/vnd.stepmania.stepchart": { + "source": "iana", + "extensions": ["sm"] + }, + "application/vnd.street-stream": { + "source": "iana" + }, + "application/vnd.sun.wadl+xml": { + "source": "iana" + }, + "application/vnd.sun.xml.calc": { + "source": "apache", + "extensions": ["sxc"] + }, + "application/vnd.sun.xml.calc.template": { + "source": "apache", + "extensions": ["stc"] + }, + "application/vnd.sun.xml.draw": { + "source": "apache", + "extensions": ["sxd"] + }, + "application/vnd.sun.xml.draw.template": { + "source": "apache", + "extensions": ["std"] + }, + "application/vnd.sun.xml.impress": { + "source": "apache", + "extensions": ["sxi"] + }, + "application/vnd.sun.xml.impress.template": { + "source": "apache", + "extensions": ["sti"] + }, + "application/vnd.sun.xml.math": { + "source": "apache", + "extensions": ["sxm"] + }, + "application/vnd.sun.xml.writer": { + "source": "apache", + "extensions": ["sxw"] + }, + "application/vnd.sun.xml.writer.global": { + "source": "apache", + "extensions": ["sxg"] + }, + "application/vnd.sun.xml.writer.template": { + "source": "apache", + "extensions": ["stw"] + }, + "application/vnd.sus-calendar": { + "source": "iana", + "extensions": ["sus","susp"] + }, + "application/vnd.svd": { + "source": "iana", + "extensions": ["svd"] + }, + "application/vnd.swiftview-ics": { + "source": "iana" + }, + "application/vnd.symbian.install": { + "source": "apache", + "extensions": ["sis","sisx"] + }, + "application/vnd.syncml+xml": { + "source": "iana", + "extensions": ["xsm"] + }, + "application/vnd.syncml.dm+wbxml": { + "source": "iana", + "extensions": ["bdm"] + }, + "application/vnd.syncml.dm+xml": { + "source": "iana", + "extensions": ["xdm"] + }, + "application/vnd.syncml.dm.notification": { + "source": "iana" + }, + "application/vnd.syncml.dmddf+wbxml": { + "source": "iana" + }, + "application/vnd.syncml.dmddf+xml": { + "source": "iana" + }, + "application/vnd.syncml.dmtnds+wbxml": { + "source": "iana" + }, + "application/vnd.syncml.dmtnds+xml": { + "source": "iana" + }, + "application/vnd.syncml.ds.notification": { + "source": "iana" + }, + "application/vnd.tao.intent-module-archive": { + "source": "iana", + "extensions": ["tao"] + }, + "application/vnd.tcpdump.pcap": { + "source": "iana", + "extensions": ["pcap","cap","dmp"] + }, + "application/vnd.tmd.mediaflex.api+xml": { + "source": "iana" + }, + "application/vnd.tml": { + "source": "iana" + }, + "application/vnd.tmobile-livetv": { + "source": "iana", + "extensions": ["tmo"] + }, + "application/vnd.trid.tpt": { + "source": "iana", + "extensions": ["tpt"] + }, + "application/vnd.triscape.mxs": { + "source": "iana", + "extensions": ["mxs"] + }, + "application/vnd.trueapp": { + "source": "iana", + "extensions": ["tra"] + }, + "application/vnd.truedoc": { + "source": "iana" + }, + "application/vnd.ubisoft.webplayer": { + "source": "iana" + }, + "application/vnd.ufdl": { + "source": "iana", + "extensions": ["ufd","ufdl"] + }, + "application/vnd.uiq.theme": { + "source": "iana", + "extensions": ["utz"] + }, + "application/vnd.umajin": { + "source": "iana", + "extensions": ["umj"] + }, + "application/vnd.unity": { + "source": "iana", + "extensions": ["unityweb"] + }, + "application/vnd.uoml+xml": { + "source": "iana", + "extensions": ["uoml"] + }, + "application/vnd.uplanet.alert": { + "source": "iana" + }, + "application/vnd.uplanet.alert-wbxml": { + "source": "iana" + }, + "application/vnd.uplanet.bearer-choice": { + "source": "iana" + }, + "application/vnd.uplanet.bearer-choice-wbxml": { + "source": "iana" + }, + "application/vnd.uplanet.cacheop": { + "source": "iana" + }, + "application/vnd.uplanet.cacheop-wbxml": { + "source": "iana" + }, + "application/vnd.uplanet.channel": { + "source": "iana" + }, + "application/vnd.uplanet.channel-wbxml": { + "source": "iana" + }, + "application/vnd.uplanet.list": { + "source": "iana" + }, + "application/vnd.uplanet.list-wbxml": { + "source": "iana" + }, + "application/vnd.uplanet.listcmd": { + "source": "iana" + }, + "application/vnd.uplanet.listcmd-wbxml": { + "source": "iana" + }, + "application/vnd.uplanet.signal": { + "source": "iana" + }, + "application/vnd.uri-map": { + "source": "iana" + }, + "application/vnd.valve.source.material": { + "source": "iana" + }, + "application/vnd.vcx": { + "source": "iana", + "extensions": ["vcx"] + }, + "application/vnd.vd-study": { + "source": "iana" + }, + "application/vnd.vectorworks": { + "source": "iana" + }, + "application/vnd.verimatrix.vcas": { + "source": "iana" + }, + "application/vnd.vidsoft.vidconference": { + "source": "iana" + }, + "application/vnd.visio": { + "source": "iana", + "extensions": ["vsd","vst","vss","vsw"] + }, + "application/vnd.visionary": { + "source": "iana", + "extensions": ["vis"] + }, + "application/vnd.vividence.scriptfile": { + "source": "iana" + }, + "application/vnd.vsf": { + "source": "iana", + "extensions": ["vsf"] + }, + "application/vnd.wap.sic": { + "source": "iana" + }, + "application/vnd.wap.slc": { + "source": "iana" + }, + "application/vnd.wap.wbxml": { + "source": "iana", + "extensions": ["wbxml"] + }, + "application/vnd.wap.wmlc": { + "source": "iana", + "extensions": ["wmlc"] + }, + "application/vnd.wap.wmlscriptc": { + "source": "iana", + "extensions": ["wmlsc"] + }, + "application/vnd.webturbo": { + "source": "iana", + "extensions": ["wtb"] + }, + "application/vnd.wfa.p2p": { + "source": "iana" + }, + "application/vnd.wfa.wsc": { + "source": "iana" + }, + "application/vnd.windows.devicepairing": { + "source": "iana" + }, + "application/vnd.wmc": { + "source": "iana" + }, + "application/vnd.wmf.bootstrap": { + "source": "iana" + }, + "application/vnd.wolfram.mathematica": { + "source": "iana" + }, + "application/vnd.wolfram.mathematica.package": { + "source": "iana" + }, + "application/vnd.wolfram.player": { + "source": "iana", + "extensions": ["nbp"] + }, + "application/vnd.wordperfect": { + "source": "iana", + "extensions": ["wpd"] + }, + "application/vnd.wqd": { + "source": "iana", + "extensions": ["wqd"] + }, + "application/vnd.wrq-hp3000-labelled": { + "source": "iana" + }, + "application/vnd.wt.stf": { + "source": "iana", + "extensions": ["stf"] + }, + "application/vnd.wv.csp+wbxml": { + "source": "iana" + }, + "application/vnd.wv.csp+xml": { + "source": "iana" + }, + "application/vnd.wv.ssp+xml": { + "source": "iana" + }, + "application/vnd.xacml+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.xara": { + "source": "iana", + "extensions": ["xar"] + }, + "application/vnd.xfdl": { + "source": "iana", + "extensions": ["xfdl"] + }, + "application/vnd.xfdl.webform": { + "source": "iana" + }, + "application/vnd.xmi+xml": { + "source": "iana" + }, + "application/vnd.xmpie.cpkg": { + "source": "iana" + }, + "application/vnd.xmpie.dpkg": { + "source": "iana" + }, + "application/vnd.xmpie.plan": { + "source": "iana" + }, + "application/vnd.xmpie.ppkg": { + "source": "iana" + }, + "application/vnd.xmpie.xlim": { + "source": "iana" + }, + "application/vnd.yamaha.hv-dic": { + "source": "iana", + "extensions": ["hvd"] + }, + "application/vnd.yamaha.hv-script": { + "source": "iana", + "extensions": ["hvs"] + }, + "application/vnd.yamaha.hv-voice": { + "source": "iana", + "extensions": ["hvp"] + }, + "application/vnd.yamaha.openscoreformat": { + "source": "iana", + "extensions": ["osf"] + }, + "application/vnd.yamaha.openscoreformat.osfpvg+xml": { + "source": "iana", + "extensions": ["osfpvg"] + }, + "application/vnd.yamaha.remote-setup": { + "source": "iana" + }, + "application/vnd.yamaha.smaf-audio": { + "source": "iana", + "extensions": ["saf"] + }, + "application/vnd.yamaha.smaf-phrase": { + "source": "iana", + "extensions": ["spf"] + }, + "application/vnd.yamaha.through-ngn": { + "source": "iana" + }, + "application/vnd.yamaha.tunnel-udpencap": { + "source": "iana" + }, + "application/vnd.yaoweme": { + "source": "iana" + }, + "application/vnd.yellowriver-custom-menu": { + "source": "iana", + "extensions": ["cmp"] + }, + "application/vnd.zul": { + "source": "iana", + "extensions": ["zir","zirz"] + }, + "application/vnd.zzazz.deck+xml": { + "source": "iana", + "extensions": ["zaz"] + }, + "application/voicexml+xml": { + "source": "iana", + "extensions": ["vxml"] + }, + "application/vq-rtcpxr": { + "source": "iana" + }, + "application/watcherinfo+xml": { + "source": "iana" + }, + "application/whoispp-query": { + "source": "iana" + }, + "application/whoispp-response": { + "source": "iana" + }, + "application/widget": { + "source": "iana", + "extensions": ["wgt"] + }, + "application/winhlp": { + "source": "apache", + "extensions": ["hlp"] + }, + "application/wita": { + "source": "iana" + }, + "application/wordperfect5.1": { + "source": "iana" + }, + "application/wsdl+xml": { + "source": "iana", + "extensions": ["wsdl"] + }, + "application/wspolicy+xml": { + "source": "iana", + "extensions": ["wspolicy"] + }, + "application/x-7z-compressed": { + "source": "apache", + "compressible": false, + "extensions": ["7z"] + }, + "application/x-abiword": { + "source": "apache", + "extensions": ["abw"] + }, + "application/x-ace-compressed": { + "source": "apache", + "extensions": ["ace"] + }, + "application/x-amf": { + "source": "apache" + }, + "application/x-apple-diskimage": { + "source": "apache", + "extensions": ["dmg"] + }, + "application/x-authorware-bin": { + "source": "apache", + "extensions": ["aab","x32","u32","vox"] + }, + "application/x-authorware-map": { + "source": "apache", + "extensions": ["aam"] + }, + "application/x-authorware-seg": { + "source": "apache", + "extensions": ["aas"] + }, + "application/x-bcpio": { + "source": "apache", + "extensions": ["bcpio"] + }, + "application/x-bdoc": { + "compressible": false, + "extensions": ["bdoc"] + }, + "application/x-bittorrent": { + "source": "apache", + "extensions": ["torrent"] + }, + "application/x-blorb": { + "source": "apache", + "extensions": ["blb","blorb"] + }, + "application/x-bzip": { + "source": "apache", + "compressible": false, + "extensions": ["bz"] + }, + "application/x-bzip2": { + "source": "apache", + "compressible": false, + "extensions": ["bz2","boz"] + }, + "application/x-cbr": { + "source": "apache", + "extensions": ["cbr","cba","cbt","cbz","cb7"] + }, + "application/x-cdlink": { + "source": "apache", + "extensions": ["vcd"] + }, + "application/x-cfs-compressed": { + "source": "apache", + "extensions": ["cfs"] + }, + "application/x-chat": { + "source": "apache", + "extensions": ["chat"] + }, + "application/x-chess-pgn": { + "source": "apache", + "extensions": ["pgn"] + }, + "application/x-chrome-extension": { + "extensions": ["crx"] + }, + "application/x-cocoa": { + "source": "nginx", + "extensions": ["cco"] + }, + "application/x-compress": { + "source": "apache" + }, + "application/x-conference": { + "source": "apache", + "extensions": ["nsc"] + }, + "application/x-cpio": { + "source": "apache", + "extensions": ["cpio"] + }, + "application/x-csh": { + "source": "apache", + "extensions": ["csh"] + }, + "application/x-deb": { + "compressible": false + }, + "application/x-debian-package": { + "source": "apache", + "extensions": ["deb","udeb"] + }, + "application/x-dgc-compressed": { + "source": "apache", + "extensions": ["dgc"] + }, + "application/x-director": { + "source": "apache", + "extensions": ["dir","dcr","dxr","cst","cct","cxt","w3d","fgd","swa"] + }, + "application/x-doom": { + "source": "apache", + "extensions": ["wad"] + }, + "application/x-dtbncx+xml": { + "source": "apache", + "extensions": ["ncx"] + }, + "application/x-dtbook+xml": { + "source": "apache", + "extensions": ["dtb"] + }, + "application/x-dtbresource+xml": { + "source": "apache", + "extensions": ["res"] + }, + "application/x-dvi": { + "source": "apache", + "compressible": false, + "extensions": ["dvi"] + }, + "application/x-envoy": { + "source": "apache", + "extensions": ["evy"] + }, + "application/x-eva": { + "source": "apache", + "extensions": ["eva"] + }, + "application/x-font-bdf": { + "source": "apache", + "extensions": ["bdf"] + }, + "application/x-font-dos": { + "source": "apache" + }, + "application/x-font-framemaker": { + "source": "apache" + }, + "application/x-font-ghostscript": { + "source": "apache", + "extensions": ["gsf"] + }, + "application/x-font-libgrx": { + "source": "apache" + }, + "application/x-font-linux-psf": { + "source": "apache", + "extensions": ["psf"] + }, + "application/x-font-otf": { + "source": "apache", + "compressible": true, + "extensions": ["otf"] + }, + "application/x-font-pcf": { + "source": "apache", + "extensions": ["pcf"] + }, + "application/x-font-snf": { + "source": "apache", + "extensions": ["snf"] + }, + "application/x-font-speedo": { + "source": "apache" + }, + "application/x-font-sunos-news": { + "source": "apache" + }, + "application/x-font-ttf": { + "source": "apache", + "compressible": true, + "extensions": ["ttf","ttc"] + }, + "application/x-font-type1": { + "source": "apache", + "extensions": ["pfa","pfb","pfm","afm"] + }, + "application/x-font-vfont": { + "source": "apache" + }, + "application/x-freearc": { + "source": "apache", + "extensions": ["arc"] + }, + "application/x-futuresplash": { + "source": "apache", + "extensions": ["spl"] + }, + "application/x-gca-compressed": { + "source": "apache", + "extensions": ["gca"] + }, + "application/x-glulx": { + "source": "apache", + "extensions": ["ulx"] + }, + "application/x-gnumeric": { + "source": "apache", + "extensions": ["gnumeric"] + }, + "application/x-gramps-xml": { + "source": "apache", + "extensions": ["gramps"] + }, + "application/x-gtar": { + "source": "apache", + "extensions": ["gtar"] + }, + "application/x-gzip": { + "source": "apache" + }, + "application/x-hdf": { + "source": "apache", + "extensions": ["hdf"] + }, + "application/x-httpd-php": { + "compressible": true, + "extensions": ["php"] + }, + "application/x-install-instructions": { + "source": "apache", + "extensions": ["install"] + }, + "application/x-iso9660-image": { + "source": "apache", + "extensions": ["iso"] + }, + "application/x-java-archive-diff": { + "source": "nginx", + "extensions": ["jardiff"] + }, + "application/x-java-jnlp-file": { + "source": "apache", + "compressible": false, + "extensions": ["jnlp"] + }, + "application/x-javascript": { + "compressible": true + }, + "application/x-latex": { + "source": "apache", + "compressible": false, + "extensions": ["latex"] + }, + "application/x-lua-bytecode": { + "extensions": ["luac"] + }, + "application/x-lzh-compressed": { + "source": "apache", + "extensions": ["lzh","lha"] + }, + "application/x-makeself": { + "source": "nginx", + "extensions": ["run"] + }, + "application/x-mie": { + "source": "apache", + "extensions": ["mie"] + }, + "application/x-mobipocket-ebook": { + "source": "apache", + "extensions": ["prc","mobi"] + }, + "application/x-mpegurl": { + "compressible": false + }, + "application/x-ms-application": { + "source": "apache", + "extensions": ["application"] + }, + "application/x-ms-shortcut": { + "source": "apache", + "extensions": ["lnk"] + }, + "application/x-ms-wmd": { + "source": "apache", + "extensions": ["wmd"] + }, + "application/x-ms-wmz": { + "source": "apache", + "extensions": ["wmz"] + }, + "application/x-ms-xbap": { + "source": "apache", + "extensions": ["xbap"] + }, + "application/x-msaccess": { + "source": "apache", + "extensions": ["mdb"] + }, + "application/x-msbinder": { + "source": "apache", + "extensions": ["obd"] + }, + "application/x-mscardfile": { + "source": "apache", + "extensions": ["crd"] + }, + "application/x-msclip": { + "source": "apache", + "extensions": ["clp"] + }, + "application/x-msdos-program": { + "extensions": ["exe"] + }, + "application/x-msdownload": { + "source": "apache", + "extensions": ["exe","dll","com","bat","msi"] + }, + "application/x-msmediaview": { + "source": "apache", + "extensions": ["mvb","m13","m14"] + }, + "application/x-msmetafile": { + "source": "apache", + "extensions": ["wmf","wmz","emf","emz"] + }, + "application/x-msmoney": { + "source": "apache", + "extensions": ["mny"] + }, + "application/x-mspublisher": { + "source": "apache", + "extensions": ["pub"] + }, + "application/x-msschedule": { + "source": "apache", + "extensions": ["scd"] + }, + "application/x-msterminal": { + "source": "apache", + "extensions": ["trm"] + }, + "application/x-mswrite": { + "source": "apache", + "extensions": ["wri"] + }, + "application/x-netcdf": { + "source": "apache", + "extensions": ["nc","cdf"] + }, + "application/x-ns-proxy-autoconfig": { + "compressible": true, + "extensions": ["pac"] + }, + "application/x-nzb": { + "source": "apache", + "extensions": ["nzb"] + }, + "application/x-perl": { + "source": "nginx", + "extensions": ["pl","pm"] + }, + "application/x-pilot": { + "source": "nginx", + "extensions": ["prc","pdb"] + }, + "application/x-pkcs12": { + "source": "apache", + "compressible": false, + "extensions": ["p12","pfx"] + }, + "application/x-pkcs7-certificates": { + "source": "apache", + "extensions": ["p7b","spc"] + }, + "application/x-pkcs7-certreqresp": { + "source": "apache", + "extensions": ["p7r"] + }, + "application/x-rar-compressed": { + "source": "apache", + "compressible": false, + "extensions": ["rar"] + }, + "application/x-redhat-package-manager": { + "source": "nginx", + "extensions": ["rpm"] + }, + "application/x-research-info-systems": { + "source": "apache", + "extensions": ["ris"] + }, + "application/x-sea": { + "source": "nginx", + "extensions": ["sea"] + }, + "application/x-sh": { + "source": "apache", + "compressible": true, + "extensions": ["sh"] + }, + "application/x-shar": { + "source": "apache", + "extensions": ["shar"] + }, + "application/x-shockwave-flash": { + "source": "apache", + "compressible": false, + "extensions": ["swf"] + }, + "application/x-silverlight-app": { + "source": "apache", + "extensions": ["xap"] + }, + "application/x-sql": { + "source": "apache", + "extensions": ["sql"] + }, + "application/x-stuffit": { + "source": "apache", + "compressible": false, + "extensions": ["sit"] + }, + "application/x-stuffitx": { + "source": "apache", + "extensions": ["sitx"] + }, + "application/x-subrip": { + "source": "apache", + "extensions": ["srt"] + }, + "application/x-sv4cpio": { + "source": "apache", + "extensions": ["sv4cpio"] + }, + "application/x-sv4crc": { + "source": "apache", + "extensions": ["sv4crc"] + }, + "application/x-t3vm-image": { + "source": "apache", + "extensions": ["t3"] + }, + "application/x-tads": { + "source": "apache", + "extensions": ["gam"] + }, + "application/x-tar": { + "source": "apache", + "compressible": true, + "extensions": ["tar"] + }, + "application/x-tcl": { + "source": "apache", + "extensions": ["tcl","tk"] + }, + "application/x-tex": { + "source": "apache", + "extensions": ["tex"] + }, + "application/x-tex-tfm": { + "source": "apache", + "extensions": ["tfm"] + }, + "application/x-texinfo": { + "source": "apache", + "extensions": ["texinfo","texi"] + }, + "application/x-tgif": { + "source": "apache", + "extensions": ["obj"] + }, + "application/x-ustar": { + "source": "apache", + "extensions": ["ustar"] + }, + "application/x-wais-source": { + "source": "apache", + "extensions": ["src"] + }, + "application/x-web-app-manifest+json": { + "compressible": true, + "extensions": ["webapp"] + }, + "application/x-www-form-urlencoded": { + "source": "iana", + "compressible": true + }, + "application/x-x509-ca-cert": { + "source": "apache", + "extensions": ["der","crt","pem"] + }, + "application/x-xfig": { + "source": "apache", + "extensions": ["fig"] + }, + "application/x-xliff+xml": { + "source": "apache", + "extensions": ["xlf"] + }, + "application/x-xpinstall": { + "source": "apache", + "compressible": false, + "extensions": ["xpi"] + }, + "application/x-xz": { + "source": "apache", + "extensions": ["xz"] + }, + "application/x-zmachine": { + "source": "apache", + "extensions": ["z1","z2","z3","z4","z5","z6","z7","z8"] + }, + "application/x400-bp": { + "source": "iana" + }, + "application/xacml+xml": { + "source": "iana" + }, + "application/xaml+xml": { + "source": "apache", + "extensions": ["xaml"] + }, + "application/xcap-att+xml": { + "source": "iana" + }, + "application/xcap-caps+xml": { + "source": "iana" + }, + "application/xcap-diff+xml": { + "source": "iana", + "extensions": ["xdf"] + }, + "application/xcap-el+xml": { + "source": "iana" + }, + "application/xcap-error+xml": { + "source": "iana" + }, + "application/xcap-ns+xml": { + "source": "iana" + }, + "application/xcon-conference-info+xml": { + "source": "iana" + }, + "application/xcon-conference-info-diff+xml": { + "source": "iana" + }, + "application/xenc+xml": { + "source": "iana", + "extensions": ["xenc"] + }, + "application/xhtml+xml": { + "source": "iana", + "compressible": true, + "extensions": ["xhtml","xht"] + }, + "application/xhtml-voice+xml": { + "source": "apache" + }, + "application/xml": { + "source": "iana", + "compressible": true, + "extensions": ["xml","xsl","xsd"] + }, + "application/xml-dtd": { + "source": "iana", + "compressible": true, + "extensions": ["dtd"] + }, + "application/xml-external-parsed-entity": { + "source": "iana" + }, + "application/xml-patch+xml": { + "source": "iana" + }, + "application/xmpp+xml": { + "source": "iana" + }, + "application/xop+xml": { + "source": "iana", + "compressible": true, + "extensions": ["xop"] + }, + "application/xproc+xml": { + "source": "apache", + "extensions": ["xpl"] + }, + "application/xslt+xml": { + "source": "iana", + "extensions": ["xslt"] + }, + "application/xspf+xml": { + "source": "apache", + "extensions": ["xspf"] + }, + "application/xv+xml": { + "source": "iana", + "extensions": ["mxml","xhvml","xvml","xvm"] + }, + "application/yang": { + "source": "iana", + "extensions": ["yang"] + }, + "application/yin+xml": { + "source": "iana", + "extensions": ["yin"] + }, + "application/zip": { + "source": "iana", + "compressible": false, + "extensions": ["zip"] + }, + "application/zlib": { + "source": "iana" + }, + "audio/1d-interleaved-parityfec": { + "source": "iana" + }, + "audio/32kadpcm": { + "source": "iana" + }, + "audio/3gpp": { + "source": "iana" + }, + "audio/3gpp2": { + "source": "iana" + }, + "audio/ac3": { + "source": "iana" + }, + "audio/adpcm": { + "source": "apache", + "extensions": ["adp"] + }, + "audio/amr": { + "source": "iana" + }, + "audio/amr-wb": { + "source": "iana" + }, + "audio/amr-wb+": { + "source": "iana" + }, + "audio/aptx": { + "source": "iana" + }, + "audio/asc": { + "source": "iana" + }, + "audio/atrac-advanced-lossless": { + "source": "iana" + }, + "audio/atrac-x": { + "source": "iana" + }, + "audio/atrac3": { + "source": "iana" + }, + "audio/basic": { + "source": "iana", + "compressible": false, + "extensions": ["au","snd"] + }, + "audio/bv16": { + "source": "iana" + }, + "audio/bv32": { + "source": "iana" + }, + "audio/clearmode": { + "source": "iana" + }, + "audio/cn": { + "source": "iana" + }, + "audio/dat12": { + "source": "iana" + }, + "audio/dls": { + "source": "iana" + }, + "audio/dsr-es201108": { + "source": "iana" + }, + "audio/dsr-es202050": { + "source": "iana" + }, + "audio/dsr-es202211": { + "source": "iana" + }, + "audio/dsr-es202212": { + "source": "iana" + }, + "audio/dv": { + "source": "iana" + }, + "audio/dvi4": { + "source": "iana" + }, + "audio/eac3": { + "source": "iana" + }, + "audio/encaprtp": { + "source": "iana" + }, + "audio/evrc": { + "source": "iana" + }, + "audio/evrc-qcp": { + "source": "iana" + }, + "audio/evrc0": { + "source": "iana" + }, + "audio/evrc1": { + "source": "iana" + }, + "audio/evrcb": { + "source": "iana" + }, + "audio/evrcb0": { + "source": "iana" + }, + "audio/evrcb1": { + "source": "iana" + }, + "audio/evrcnw": { + "source": "iana" + }, + "audio/evrcnw0": { + "source": "iana" + }, + "audio/evrcnw1": { + "source": "iana" + }, + "audio/evrcwb": { + "source": "iana" + }, + "audio/evrcwb0": { + "source": "iana" + }, + "audio/evrcwb1": { + "source": "iana" + }, + "audio/evs": { + "source": "iana" + }, + "audio/fwdred": { + "source": "iana" + }, + "audio/g711-0": { + "source": "iana" + }, + "audio/g719": { + "source": "iana" + }, + "audio/g722": { + "source": "iana" + }, + "audio/g7221": { + "source": "iana" + }, + "audio/g723": { + "source": "iana" + }, + "audio/g726-16": { + "source": "iana" + }, + "audio/g726-24": { + "source": "iana" + }, + "audio/g726-32": { + "source": "iana" + }, + "audio/g726-40": { + "source": "iana" + }, + "audio/g728": { + "source": "iana" + }, + "audio/g729": { + "source": "iana" + }, + "audio/g7291": { + "source": "iana" + }, + "audio/g729d": { + "source": "iana" + }, + "audio/g729e": { + "source": "iana" + }, + "audio/gsm": { + "source": "iana" + }, + "audio/gsm-efr": { + "source": "iana" + }, + "audio/gsm-hr-08": { + "source": "iana" + }, + "audio/ilbc": { + "source": "iana" + }, + "audio/ip-mr_v2.5": { + "source": "iana" + }, + "audio/isac": { + "source": "apache" + }, + "audio/l16": { + "source": "iana" + }, + "audio/l20": { + "source": "iana" + }, + "audio/l24": { + "source": "iana", + "compressible": false + }, + "audio/l8": { + "source": "iana" + }, + "audio/lpc": { + "source": "iana" + }, + "audio/midi": { + "source": "apache", + "extensions": ["mid","midi","kar","rmi"] + }, + "audio/mobile-xmf": { + "source": "iana" + }, + "audio/mp4": { + "source": "iana", + "compressible": false, + "extensions": ["mp4a","m4a"] + }, + "audio/mp4a-latm": { + "source": "iana" + }, + "audio/mpa": { + "source": "iana" + }, + "audio/mpa-robust": { + "source": "iana" + }, + "audio/mpeg": { + "source": "iana", + "compressible": false, + "extensions": ["mpga","mp2","mp2a","mp3","m2a","m3a"] + }, + "audio/mpeg4-generic": { + "source": "iana" + }, + "audio/musepack": { + "source": "apache" + }, + "audio/ogg": { + "source": "iana", + "compressible": false, + "extensions": ["oga","ogg","spx"] + }, + "audio/opus": { + "source": "iana" + }, + "audio/parityfec": { + "source": "iana" + }, + "audio/pcma": { + "source": "iana" + }, + "audio/pcma-wb": { + "source": "iana" + }, + "audio/pcmu": { + "source": "iana" + }, + "audio/pcmu-wb": { + "source": "iana" + }, + "audio/prs.sid": { + "source": "iana" + }, + "audio/qcelp": { + "source": "iana" + }, + "audio/raptorfec": { + "source": "iana" + }, + "audio/red": { + "source": "iana" + }, + "audio/rtp-enc-aescm128": { + "source": "iana" + }, + "audio/rtp-midi": { + "source": "iana" + }, + "audio/rtploopback": { + "source": "iana" + }, + "audio/rtx": { + "source": "iana" + }, + "audio/s3m": { + "source": "apache", + "extensions": ["s3m"] + }, + "audio/silk": { + "source": "apache", + "extensions": ["sil"] + }, + "audio/smv": { + "source": "iana" + }, + "audio/smv-qcp": { + "source": "iana" + }, + "audio/smv0": { + "source": "iana" + }, + "audio/sp-midi": { + "source": "iana" + }, + "audio/speex": { + "source": "iana" + }, + "audio/t140c": { + "source": "iana" + }, + "audio/t38": { + "source": "iana" + }, + "audio/telephone-event": { + "source": "iana" + }, + "audio/tone": { + "source": "iana" + }, + "audio/uemclip": { + "source": "iana" + }, + "audio/ulpfec": { + "source": "iana" + }, + "audio/vdvi": { + "source": "iana" + }, + "audio/vmr-wb": { + "source": "iana" + }, + "audio/vnd.3gpp.iufp": { + "source": "iana" + }, + "audio/vnd.4sb": { + "source": "iana" + }, + "audio/vnd.audiokoz": { + "source": "iana" + }, + "audio/vnd.celp": { + "source": "iana" + }, + "audio/vnd.cisco.nse": { + "source": "iana" + }, + "audio/vnd.cmles.radio-events": { + "source": "iana" + }, + "audio/vnd.cns.anp1": { + "source": "iana" + }, + "audio/vnd.cns.inf1": { + "source": "iana" + }, + "audio/vnd.dece.audio": { + "source": "iana", + "extensions": ["uva","uvva"] + }, + "audio/vnd.digital-winds": { + "source": "iana", + "extensions": ["eol"] + }, + "audio/vnd.dlna.adts": { + "source": "iana" + }, + "audio/vnd.dolby.heaac.1": { + "source": "iana" + }, + "audio/vnd.dolby.heaac.2": { + "source": "iana" + }, + "audio/vnd.dolby.mlp": { + "source": "iana" + }, + "audio/vnd.dolby.mps": { + "source": "iana" + }, + "audio/vnd.dolby.pl2": { + "source": "iana" + }, + "audio/vnd.dolby.pl2x": { + "source": "iana" + }, + "audio/vnd.dolby.pl2z": { + "source": "iana" + }, + "audio/vnd.dolby.pulse.1": { + "source": "iana" + }, + "audio/vnd.dra": { + "source": "iana", + "extensions": ["dra"] + }, + "audio/vnd.dts": { + "source": "iana", + "extensions": ["dts"] + }, + "audio/vnd.dts.hd": { + "source": "iana", + "extensions": ["dtshd"] + }, + "audio/vnd.dvb.file": { + "source": "iana" + }, + "audio/vnd.everad.plj": { + "source": "iana" + }, + "audio/vnd.hns.audio": { + "source": "iana" + }, + "audio/vnd.lucent.voice": { + "source": "iana", + "extensions": ["lvp"] + }, + "audio/vnd.ms-playready.media.pya": { + "source": "iana", + "extensions": ["pya"] + }, + "audio/vnd.nokia.mobile-xmf": { + "source": "iana" + }, + "audio/vnd.nortel.vbk": { + "source": "iana" + }, + "audio/vnd.nuera.ecelp4800": { + "source": "iana", + "extensions": ["ecelp4800"] + }, + "audio/vnd.nuera.ecelp7470": { + "source": "iana", + "extensions": ["ecelp7470"] + }, + "audio/vnd.nuera.ecelp9600": { + "source": "iana", + "extensions": ["ecelp9600"] + }, + "audio/vnd.octel.sbc": { + "source": "iana" + }, + "audio/vnd.qcelp": { + "source": "iana" + }, + "audio/vnd.rhetorex.32kadpcm": { + "source": "iana" + }, + "audio/vnd.rip": { + "source": "iana", + "extensions": ["rip"] + }, + "audio/vnd.rn-realaudio": { + "compressible": false + }, + "audio/vnd.sealedmedia.softseal.mpeg": { + "source": "iana" + }, + "audio/vnd.vmx.cvsd": { + "source": "iana" + }, + "audio/vnd.wave": { + "compressible": false + }, + "audio/vorbis": { + "source": "iana", + "compressible": false + }, + "audio/vorbis-config": { + "source": "iana" + }, + "audio/wav": { + "compressible": false, + "extensions": ["wav"] + }, + "audio/wave": { + "compressible": false, + "extensions": ["wav"] + }, + "audio/webm": { + "source": "apache", + "compressible": false, + "extensions": ["weba"] + }, + "audio/x-aac": { + "source": "apache", + "compressible": false, + "extensions": ["aac"] + }, + "audio/x-aiff": { + "source": "apache", + "extensions": ["aif","aiff","aifc"] + }, + "audio/x-caf": { + "source": "apache", + "compressible": false, + "extensions": ["caf"] + }, + "audio/x-flac": { + "source": "apache", + "extensions": ["flac"] + }, + "audio/x-m4a": { + "source": "nginx", + "extensions": ["m4a"] + }, + "audio/x-matroska": { + "source": "apache", + "extensions": ["mka"] + }, + "audio/x-mpegurl": { + "source": "apache", + "extensions": ["m3u"] + }, + "audio/x-ms-wax": { + "source": "apache", + "extensions": ["wax"] + }, + "audio/x-ms-wma": { + "source": "apache", + "extensions": ["wma"] + }, + "audio/x-pn-realaudio": { + "source": "apache", + "extensions": ["ram","ra"] + }, + "audio/x-pn-realaudio-plugin": { + "source": "apache", + "extensions": ["rmp"] + }, + "audio/x-realaudio": { + "source": "nginx", + "extensions": ["ra"] + }, + "audio/x-tta": { + "source": "apache" + }, + "audio/x-wav": { + "source": "apache", + "extensions": ["wav"] + }, + "audio/xm": { + "source": "apache", + "extensions": ["xm"] + }, + "chemical/x-cdx": { + "source": "apache", + "extensions": ["cdx"] + }, + "chemical/x-cif": { + "source": "apache", + "extensions": ["cif"] + }, + "chemical/x-cmdf": { + "source": "apache", + "extensions": ["cmdf"] + }, + "chemical/x-cml": { + "source": "apache", + "extensions": ["cml"] + }, + "chemical/x-csml": { + "source": "apache", + "extensions": ["csml"] + }, + "chemical/x-pdb": { + "source": "apache" + }, + "chemical/x-xyz": { + "source": "apache", + "extensions": ["xyz"] + }, + "font/opentype": { + "compressible": true, + "extensions": ["otf"] + }, + "image/bmp": { + "source": "apache", + "compressible": true, + "extensions": ["bmp"] + }, + "image/cgm": { + "source": "iana", + "extensions": ["cgm"] + }, + "image/fits": { + "source": "iana" + }, + "image/g3fax": { + "source": "iana", + "extensions": ["g3"] + }, + "image/gif": { + "source": "iana", + "compressible": false, + "extensions": ["gif"] + }, + "image/ief": { + "source": "iana", + "extensions": ["ief"] + }, + "image/jp2": { + "source": "iana" + }, + "image/jpeg": { + "source": "iana", + "compressible": false, + "extensions": ["jpeg","jpg","jpe"] + }, + "image/jpm": { + "source": "iana" + }, + "image/jpx": { + "source": "iana" + }, + "image/ktx": { + "source": "iana", + "extensions": ["ktx"] + }, + "image/naplps": { + "source": "iana" + }, + "image/pjpeg": { + "compressible": false + }, + "image/png": { + "source": "iana", + "compressible": false, + "extensions": ["png"] + }, + "image/prs.btif": { + "source": "iana", + "extensions": ["btif"] + }, + "image/prs.pti": { + "source": "iana" + }, + "image/pwg-raster": { + "source": "iana" + }, + "image/sgi": { + "source": "apache", + "extensions": ["sgi"] + }, + "image/svg+xml": { + "source": "iana", + "compressible": true, + "extensions": ["svg","svgz"] + }, + "image/t38": { + "source": "iana" + }, + "image/tiff": { + "source": "iana", + "compressible": false, + "extensions": ["tiff","tif"] + }, + "image/tiff-fx": { + "source": "iana" + }, + "image/vnd.adobe.photoshop": { + "source": "iana", + "compressible": true, + "extensions": ["psd"] + }, + "image/vnd.airzip.accelerator.azv": { + "source": "iana" + }, + "image/vnd.cns.inf2": { + "source": "iana" + }, + "image/vnd.dece.graphic": { + "source": "iana", + "extensions": ["uvi","uvvi","uvg","uvvg"] + }, + "image/vnd.djvu": { + "source": "iana", + "extensions": ["djvu","djv"] + }, + "image/vnd.dvb.subtitle": { + "source": "iana", + "extensions": ["sub"] + }, + "image/vnd.dwg": { + "source": "iana", + "extensions": ["dwg"] + }, + "image/vnd.dxf": { + "source": "iana", + "extensions": ["dxf"] + }, + "image/vnd.fastbidsheet": { + "source": "iana", + "extensions": ["fbs"] + }, + "image/vnd.fpx": { + "source": "iana", + "extensions": ["fpx"] + }, + "image/vnd.fst": { + "source": "iana", + "extensions": ["fst"] + }, + "image/vnd.fujixerox.edmics-mmr": { + "source": "iana", + "extensions": ["mmr"] + }, + "image/vnd.fujixerox.edmics-rlc": { + "source": "iana", + "extensions": ["rlc"] + }, + "image/vnd.globalgraphics.pgb": { + "source": "iana" + }, + "image/vnd.microsoft.icon": { + "source": "iana" + }, + "image/vnd.mix": { + "source": "iana" + }, + "image/vnd.mozilla.apng": { + "source": "iana" + }, + "image/vnd.ms-modi": { + "source": "iana", + "extensions": ["mdi"] + }, + "image/vnd.ms-photo": { + "source": "apache", + "extensions": ["wdp"] + }, + "image/vnd.net-fpx": { + "source": "iana", + "extensions": ["npx"] + }, + "image/vnd.radiance": { + "source": "iana" + }, + "image/vnd.sealed.png": { + "source": "iana" + }, + "image/vnd.sealedmedia.softseal.gif": { + "source": "iana" + }, + "image/vnd.sealedmedia.softseal.jpg": { + "source": "iana" + }, + "image/vnd.svf": { + "source": "iana" + }, + "image/vnd.tencent.tap": { + "source": "iana" + }, + "image/vnd.valve.source.texture": { + "source": "iana" + }, + "image/vnd.wap.wbmp": { + "source": "iana", + "extensions": ["wbmp"] + }, + "image/vnd.xiff": { + "source": "iana", + "extensions": ["xif"] + }, + "image/vnd.zbrush.pcx": { + "source": "iana" + }, + "image/webp": { + "source": "apache", + "extensions": ["webp"] + }, + "image/x-3ds": { + "source": "apache", + "extensions": ["3ds"] + }, + "image/x-cmu-raster": { + "source": "apache", + "extensions": ["ras"] + }, + "image/x-cmx": { + "source": "apache", + "extensions": ["cmx"] + }, + "image/x-freehand": { + "source": "apache", + "extensions": ["fh","fhc","fh4","fh5","fh7"] + }, + "image/x-icon": { + "source": "apache", + "compressible": true, + "extensions": ["ico"] + }, + "image/x-jng": { + "source": "nginx", + "extensions": ["jng"] + }, + "image/x-mrsid-image": { + "source": "apache", + "extensions": ["sid"] + }, + "image/x-ms-bmp": { + "source": "nginx", + "compressible": true, + "extensions": ["bmp"] + }, + "image/x-pcx": { + "source": "apache", + "extensions": ["pcx"] + }, + "image/x-pict": { + "source": "apache", + "extensions": ["pic","pct"] + }, + "image/x-portable-anymap": { + "source": "apache", + "extensions": ["pnm"] + }, + "image/x-portable-bitmap": { + "source": "apache", + "extensions": ["pbm"] + }, + "image/x-portable-graymap": { + "source": "apache", + "extensions": ["pgm"] + }, + "image/x-portable-pixmap": { + "source": "apache", + "extensions": ["ppm"] + }, + "image/x-rgb": { + "source": "apache", + "extensions": ["rgb"] + }, + "image/x-tga": { + "source": "apache", + "extensions": ["tga"] + }, + "image/x-xbitmap": { + "source": "apache", + "extensions": ["xbm"] + }, + "image/x-xcf": { + "compressible": false + }, + "image/x-xpixmap": { + "source": "apache", + "extensions": ["xpm"] + }, + "image/x-xwindowdump": { + "source": "apache", + "extensions": ["xwd"] + }, + "message/cpim": { + "source": "iana" + }, + "message/delivery-status": { + "source": "iana" + }, + "message/disposition-notification": { + "source": "iana" + }, + "message/external-body": { + "source": "iana" + }, + "message/feedback-report": { + "source": "iana" + }, + "message/global": { + "source": "iana" + }, + "message/global-delivery-status": { + "source": "iana" + }, + "message/global-disposition-notification": { + "source": "iana" + }, + "message/global-headers": { + "source": "iana" + }, + "message/http": { + "source": "iana", + "compressible": false + }, + "message/imdn+xml": { + "source": "iana", + "compressible": true + }, + "message/news": { + "source": "iana" + }, + "message/partial": { + "source": "iana", + "compressible": false + }, + "message/rfc822": { + "source": "iana", + "compressible": true, + "extensions": ["eml","mime"] + }, + "message/s-http": { + "source": "iana" + }, + "message/sip": { + "source": "iana" + }, + "message/sipfrag": { + "source": "iana" + }, + "message/tracking-status": { + "source": "iana" + }, + "message/vnd.si.simp": { + "source": "iana" + }, + "message/vnd.wfa.wsc": { + "source": "iana" + }, + "model/iges": { + "source": "iana", + "compressible": false, + "extensions": ["igs","iges"] + }, + "model/mesh": { + "source": "iana", + "compressible": false, + "extensions": ["msh","mesh","silo"] + }, + "model/vnd.collada+xml": { + "source": "iana", + "extensions": ["dae"] + }, + "model/vnd.dwf": { + "source": "iana", + "extensions": ["dwf"] + }, + "model/vnd.flatland.3dml": { + "source": "iana" + }, + "model/vnd.gdl": { + "source": "iana", + "extensions": ["gdl"] + }, + "model/vnd.gs-gdl": { + "source": "apache" + }, + "model/vnd.gs.gdl": { + "source": "iana" + }, + "model/vnd.gtw": { + "source": "iana", + "extensions": ["gtw"] + }, + "model/vnd.moml+xml": { + "source": "iana" + }, + "model/vnd.mts": { + "source": "iana", + "extensions": ["mts"] + }, + "model/vnd.opengex": { + "source": "iana" + }, + "model/vnd.parasolid.transmit.binary": { + "source": "iana" + }, + "model/vnd.parasolid.transmit.text": { + "source": "iana" + }, + "model/vnd.valve.source.compiled-map": { + "source": "iana" + }, + "model/vnd.vtu": { + "source": "iana", + "extensions": ["vtu"] + }, + "model/vrml": { + "source": "iana", + "compressible": false, + "extensions": ["wrl","vrml"] + }, + "model/x3d+binary": { + "source": "apache", + "compressible": false, + "extensions": ["x3db","x3dbz"] + }, + "model/x3d+fastinfoset": { + "source": "iana" + }, + "model/x3d+vrml": { + "source": "apache", + "compressible": false, + "extensions": ["x3dv","x3dvz"] + }, + "model/x3d+xml": { + "source": "iana", + "compressible": true, + "extensions": ["x3d","x3dz"] + }, + "model/x3d-vrml": { + "source": "iana" + }, + "multipart/alternative": { + "source": "iana", + "compressible": false + }, + "multipart/appledouble": { + "source": "iana" + }, + "multipart/byteranges": { + "source": "iana" + }, + "multipart/digest": { + "source": "iana" + }, + "multipart/encrypted": { + "source": "iana", + "compressible": false + }, + "multipart/form-data": { + "source": "iana", + "compressible": false + }, + "multipart/header-set": { + "source": "iana" + }, + "multipart/mixed": { + "source": "iana", + "compressible": false + }, + "multipart/parallel": { + "source": "iana" + }, + "multipart/related": { + "source": "iana", + "compressible": false + }, + "multipart/report": { + "source": "iana" + }, + "multipart/signed": { + "source": "iana", + "compressible": false + }, + "multipart/voice-message": { + "source": "iana" + }, + "multipart/x-mixed-replace": { + "source": "iana" + }, + "text/1d-interleaved-parityfec": { + "source": "iana" + }, + "text/cache-manifest": { + "source": "iana", + "compressible": true, + "extensions": ["appcache","manifest"] + }, + "text/calendar": { + "source": "iana", + "extensions": ["ics","ifb"] + }, + "text/calender": { + "compressible": true + }, + "text/cmd": { + "compressible": true + }, + "text/coffeescript": { + "extensions": ["coffee","litcoffee"] + }, + "text/css": { + "source": "iana", + "compressible": true, + "extensions": ["css"] + }, + "text/csv": { + "source": "iana", + "compressible": true, + "extensions": ["csv"] + }, + "text/csv-schema": { + "source": "iana" + }, + "text/directory": { + "source": "iana" + }, + "text/dns": { + "source": "iana" + }, + "text/ecmascript": { + "source": "iana" + }, + "text/encaprtp": { + "source": "iana" + }, + "text/enriched": { + "source": "iana" + }, + "text/fwdred": { + "source": "iana" + }, + "text/grammar-ref-list": { + "source": "iana" + }, + "text/hjson": { + "extensions": ["hjson"] + }, + "text/html": { + "source": "iana", + "compressible": true, + "extensions": ["html","htm","shtml"] + }, + "text/jade": { + "extensions": ["jade"] + }, + "text/javascript": { + "source": "iana", + "compressible": true + }, + "text/jcr-cnd": { + "source": "iana" + }, + "text/jsx": { + "compressible": true, + "extensions": ["jsx"] + }, + "text/less": { + "extensions": ["less"] + }, + "text/markdown": { + "source": "iana" + }, + "text/mathml": { + "source": "nginx", + "extensions": ["mml"] + }, + "text/mizar": { + "source": "iana" + }, + "text/n3": { + "source": "iana", + "compressible": true, + "extensions": ["n3"] + }, + "text/parameters": { + "source": "iana" + }, + "text/parityfec": { + "source": "iana" + }, + "text/plain": { + "source": "iana", + "compressible": true, + "extensions": ["txt","text","conf","def","list","log","in","ini"] + }, + "text/provenance-notation": { + "source": "iana" + }, + "text/prs.fallenstein.rst": { + "source": "iana" + }, + "text/prs.lines.tag": { + "source": "iana", + "extensions": ["dsc"] + }, + "text/raptorfec": { + "source": "iana" + }, + "text/red": { + "source": "iana" + }, + "text/rfc822-headers": { + "source": "iana" + }, + "text/richtext": { + "source": "iana", + "compressible": true, + "extensions": ["rtx"] + }, + "text/rtf": { + "source": "iana", + "compressible": true, + "extensions": ["rtf"] + }, + "text/rtp-enc-aescm128": { + "source": "iana" + }, + "text/rtploopback": { + "source": "iana" + }, + "text/rtx": { + "source": "iana" + }, + "text/sgml": { + "source": "iana", + "extensions": ["sgml","sgm"] + }, + "text/stylus": { + "extensions": ["stylus","styl"] + }, + "text/t140": { + "source": "iana" + }, + "text/tab-separated-values": { + "source": "iana", + "compressible": true, + "extensions": ["tsv"] + }, + "text/troff": { + "source": "iana", + "extensions": ["t","tr","roff","man","me","ms"] + }, + "text/turtle": { + "source": "iana", + "extensions": ["ttl"] + }, + "text/ulpfec": { + "source": "iana" + }, + "text/uri-list": { + "source": "iana", + "compressible": true, + "extensions": ["uri","uris","urls"] + }, + "text/vcard": { + "source": "iana", + "compressible": true, + "extensions": ["vcard"] + }, + "text/vnd.a": { + "source": "iana" + }, + "text/vnd.abc": { + "source": "iana" + }, + "text/vnd.curl": { + "source": "iana", + "extensions": ["curl"] + }, + "text/vnd.curl.dcurl": { + "source": "apache", + "extensions": ["dcurl"] + }, + "text/vnd.curl.mcurl": { + "source": "apache", + "extensions": ["mcurl"] + }, + "text/vnd.curl.scurl": { + "source": "apache", + "extensions": ["scurl"] + }, + "text/vnd.debian.copyright": { + "source": "iana" + }, + "text/vnd.dmclientscript": { + "source": "iana" + }, + "text/vnd.dvb.subtitle": { + "source": "iana", + "extensions": ["sub"] + }, + "text/vnd.esmertec.theme-descriptor": { + "source": "iana" + }, + "text/vnd.fly": { + "source": "iana", + "extensions": ["fly"] + }, + "text/vnd.fmi.flexstor": { + "source": "iana", + "extensions": ["flx"] + }, + "text/vnd.graphviz": { + "source": "iana", + "extensions": ["gv"] + }, + "text/vnd.in3d.3dml": { + "source": "iana", + "extensions": ["3dml"] + }, + "text/vnd.in3d.spot": { + "source": "iana", + "extensions": ["spot"] + }, + "text/vnd.iptc.newsml": { + "source": "iana" + }, + "text/vnd.iptc.nitf": { + "source": "iana" + }, + "text/vnd.latex-z": { + "source": "iana" + }, + "text/vnd.motorola.reflex": { + "source": "iana" + }, + "text/vnd.ms-mediapackage": { + "source": "iana" + }, + "text/vnd.net2phone.commcenter.command": { + "source": "iana" + }, + "text/vnd.radisys.msml-basic-layout": { + "source": "iana" + }, + "text/vnd.si.uricatalogue": { + "source": "iana" + }, + "text/vnd.sun.j2me.app-descriptor": { + "source": "iana", + "extensions": ["jad"] + }, + "text/vnd.trolltech.linguist": { + "source": "iana" + }, + "text/vnd.wap.si": { + "source": "iana" + }, + "text/vnd.wap.sl": { + "source": "iana" + }, + "text/vnd.wap.wml": { + "source": "iana", + "extensions": ["wml"] + }, + "text/vnd.wap.wmlscript": { + "source": "iana", + "extensions": ["wmls"] + }, + "text/vtt": { + "charset": "UTF-8", + "compressible": true, + "extensions": ["vtt"] + }, + "text/x-asm": { + "source": "apache", + "extensions": ["s","asm"] + }, + "text/x-c": { + "source": "apache", + "extensions": ["c","cc","cxx","cpp","h","hh","dic"] + }, + "text/x-component": { + "source": "nginx", + "extensions": ["htc"] + }, + "text/x-fortran": { + "source": "apache", + "extensions": ["f","for","f77","f90"] + }, + "text/x-gwt-rpc": { + "compressible": true + }, + "text/x-handlebars-template": { + "extensions": ["hbs"] + }, + "text/x-java-source": { + "source": "apache", + "extensions": ["java"] + }, + "text/x-jquery-tmpl": { + "compressible": true + }, + "text/x-lua": { + "extensions": ["lua"] + }, + "text/x-markdown": { + "compressible": true, + "extensions": ["markdown","md","mkd"] + }, + "text/x-nfo": { + "source": "apache", + "extensions": ["nfo"] + }, + "text/x-opml": { + "source": "apache", + "extensions": ["opml"] + }, + "text/x-pascal": { + "source": "apache", + "extensions": ["p","pas"] + }, + "text/x-processing": { + "compressible": true, + "extensions": ["pde"] + }, + "text/x-sass": { + "extensions": ["sass"] + }, + "text/x-scss": { + "extensions": ["scss"] + }, + "text/x-setext": { + "source": "apache", + "extensions": ["etx"] + }, + "text/x-sfv": { + "source": "apache", + "extensions": ["sfv"] + }, + "text/x-suse-ymp": { + "compressible": true, + "extensions": ["ymp"] + }, + "text/x-uuencode": { + "source": "apache", + "extensions": ["uu"] + }, + "text/x-vcalendar": { + "source": "apache", + "extensions": ["vcs"] + }, + "text/x-vcard": { + "source": "apache", + "extensions": ["vcf"] + }, + "text/xml": { + "source": "iana", + "compressible": true, + "extensions": ["xml"] + }, + "text/xml-external-parsed-entity": { + "source": "iana" + }, + "text/yaml": { + "extensions": ["yaml","yml"] + }, + "video/1d-interleaved-parityfec": { + "source": "apache" + }, + "video/3gpp": { + "source": "apache", + "extensions": ["3gp","3gpp"] + }, + "video/3gpp-tt": { + "source": "apache" + }, + "video/3gpp2": { + "source": "apache", + "extensions": ["3g2"] + }, + "video/bmpeg": { + "source": "apache" + }, + "video/bt656": { + "source": "apache" + }, + "video/celb": { + "source": "apache" + }, + "video/dv": { + "source": "apache" + }, + "video/h261": { + "source": "apache", + "extensions": ["h261"] + }, + "video/h263": { + "source": "apache", + "extensions": ["h263"] + }, + "video/h263-1998": { + "source": "apache" + }, + "video/h263-2000": { + "source": "apache" + }, + "video/h264": { + "source": "apache", + "extensions": ["h264"] + }, + "video/h264-rcdo": { + "source": "apache" + }, + "video/h264-svc": { + "source": "apache" + }, + "video/jpeg": { + "source": "apache", + "extensions": ["jpgv"] + }, + "video/jpeg2000": { + "source": "apache" + }, + "video/jpm": { + "source": "apache", + "extensions": ["jpm","jpgm"] + }, + "video/mj2": { + "source": "apache", + "extensions": ["mj2","mjp2"] + }, + "video/mp1s": { + "source": "apache" + }, + "video/mp2p": { + "source": "apache" + }, + "video/mp2t": { + "source": "apache", + "extensions": ["ts"] + }, + "video/mp4": { + "source": "apache", + "compressible": false, + "extensions": ["mp4","mp4v","mpg4"] + }, + "video/mp4v-es": { + "source": "apache" + }, + "video/mpeg": { + "source": "apache", + "compressible": false, + "extensions": ["mpeg","mpg","mpe","m1v","m2v"] + }, + "video/mpeg4-generic": { + "source": "apache" + }, + "video/mpv": { + "source": "apache" + }, + "video/nv": { + "source": "apache" + }, + "video/ogg": { + "source": "apache", + "compressible": false, + "extensions": ["ogv"] + }, + "video/parityfec": { + "source": "apache" + }, + "video/pointer": { + "source": "apache" + }, + "video/quicktime": { + "source": "apache", + "compressible": false, + "extensions": ["qt","mov"] + }, + "video/raw": { + "source": "apache" + }, + "video/rtp-enc-aescm128": { + "source": "apache" + }, + "video/rtx": { + "source": "apache" + }, + "video/smpte292m": { + "source": "apache" + }, + "video/ulpfec": { + "source": "apache" + }, + "video/vc1": { + "source": "apache" + }, + "video/vnd.cctv": { + "source": "apache" + }, + "video/vnd.dece.hd": { + "source": "apache", + "extensions": ["uvh","uvvh"] + }, + "video/vnd.dece.mobile": { + "source": "apache", + "extensions": ["uvm","uvvm"] + }, + "video/vnd.dece.mp4": { + "source": "apache" + }, + "video/vnd.dece.pd": { + "source": "apache", + "extensions": ["uvp","uvvp"] + }, + "video/vnd.dece.sd": { + "source": "apache", + "extensions": ["uvs","uvvs"] + }, + "video/vnd.dece.video": { + "source": "apache", + "extensions": ["uvv","uvvv"] + }, + "video/vnd.directv.mpeg": { + "source": "apache" + }, + "video/vnd.directv.mpeg-tts": { + "source": "apache" + }, + "video/vnd.dlna.mpeg-tts": { + "source": "apache" + }, + "video/vnd.dvb.file": { + "source": "apache", + "extensions": ["dvb"] + }, + "video/vnd.fvt": { + "source": "apache", + "extensions": ["fvt"] + }, + "video/vnd.hns.video": { + "source": "apache" + }, + "video/vnd.iptvforum.1dparityfec-1010": { + "source": "apache" + }, + "video/vnd.iptvforum.1dparityfec-2005": { + "source": "apache" + }, + "video/vnd.iptvforum.2dparityfec-1010": { + "source": "apache" + }, + "video/vnd.iptvforum.2dparityfec-2005": { + "source": "apache" + }, + "video/vnd.iptvforum.ttsavc": { + "source": "apache" + }, + "video/vnd.iptvforum.ttsmpeg2": { + "source": "apache" + }, + "video/vnd.motorola.video": { + "source": "apache" + }, + "video/vnd.motorola.videop": { + "source": "apache" + }, + "video/vnd.mpegurl": { + "source": "apache", + "extensions": ["mxu","m4u"] + }, + "video/vnd.ms-playready.media.pyv": { + "source": "apache", + "extensions": ["pyv"] + }, + "video/vnd.nokia.interleaved-multimedia": { + "source": "apache" + }, + "video/vnd.nokia.videovoip": { + "source": "apache" + }, + "video/vnd.objectvideo": { + "source": "apache" + }, + "video/vnd.sealed.mpeg1": { + "source": "apache" + }, + "video/vnd.sealed.mpeg4": { + "source": "apache" + }, + "video/vnd.sealed.swf": { + "source": "apache" + }, + "video/vnd.sealedmedia.softseal.mov": { + "source": "apache" + }, + "video/vnd.uvvu.mp4": { + "source": "apache", + "extensions": ["uvu","uvvu"] + }, + "video/vnd.vivo": { + "source": "apache", + "extensions": ["viv"] + }, + "video/webm": { + "source": "apache", + "compressible": false, + "extensions": ["webm"] + }, + "video/x-f4v": { + "source": "apache", + "extensions": ["f4v"] + }, + "video/x-fli": { + "source": "apache", + "extensions": ["fli"] + }, + "video/x-flv": { + "source": "apache", + "compressible": false, + "extensions": ["flv"] + }, + "video/x-m4v": { + "source": "apache", + "extensions": ["m4v"] + }, + "video/x-matroska": { + "source": "apache", + "compressible": false, + "extensions": ["mkv","mk3d","mks"] + }, + "video/x-mng": { + "source": "apache", + "extensions": ["mng"] + }, + "video/x-ms-asf": { + "source": "apache", + "extensions": ["asf","asx"] + }, + "video/x-ms-vob": { + "source": "apache", + "extensions": ["vob"] + }, + "video/x-ms-wm": { + "source": "apache", + "extensions": ["wm"] + }, + "video/x-ms-wmv": { + "source": "apache", + "compressible": false, + "extensions": ["wmv"] + }, + "video/x-ms-wmx": { + "source": "apache", + "extensions": ["wmx"] + }, + "video/x-ms-wvx": { + "source": "apache", + "extensions": ["wvx"] + }, + "video/x-msvideo": { + "source": "apache", + "extensions": ["avi"] + }, + "video/x-sgi-movie": { + "source": "apache", + "extensions": ["movie"] + }, + "video/x-smv": { + "source": "apache", + "extensions": ["smv"] + }, + "x-conference/x-cooltalk": { + "source": "apache", + "extensions": ["ice"] + }, + "x-shader/x-fragment": { + "compressible": true + }, + "x-shader/x-vertex": { + "compressible": true + } +} +},{}],181:[function(require,module,exports){ module["exports"] = [ "ants", "bats", "bears", "bees", @@ -15136,55 +23128,55 @@ "worshipers", "zombies", "druids" ]; -},{}],174:[function(require,module,exports){ +},{}],182:[function(require,module,exports){ var team = {}; module['exports'] = team; team.creature = require("./creature"); team.name = require("./name"); -},{"./creature":173,"./name":175}],175:[function(require,module,exports){ +},{"./creature":181,"./name":183}],183:[function(require,module,exports){ module["exports"] = [ "#{Address.state} #{creature}" ]; -},{}],176:[function(require,module,exports){ +},{}],184:[function(require,module,exports){ module["exports"] = [ "####", "###", "##" ]; -},{}],177:[function(require,module,exports){ +},{}],185:[function(require,module,exports){ module["exports"] = [ "Australia" ]; -},{}],178:[function(require,module,exports){ +},{}],186:[function(require,module,exports){ var address = {}; module['exports'] = address; address.state_abbr = require("./state_abbr"); address.state = require("./state"); address.postcode = require("./postcode"); address.building_number = require("./building_number"); address.street_suffix = require("./street_suffix"); address.default_country = require("./default_country"); -},{"./building_number":176,"./default_country":177,"./postcode":179,"./state":180,"./state_abbr":181,"./street_suffix":182}],179:[function(require,module,exports){ +},{"./building_number":184,"./default_country":185,"./postcode":187,"./state":188,"./state_abbr":189,"./street_suffix":190}],187:[function(require,module,exports){ module["exports"] = [ "0###", "2###", "3###", "4###", "5###", "6###", "7###" ]; -},{}],180:[function(require,module,exports){ +},{}],188:[function(require,module,exports){ module["exports"] = [ "New South Wales", "Queensland", "Northern Territory", "South Australia", @@ -15192,11 +23184,11 @@ "Tasmania", "Australian Capital Territory", "Victoria" ]; -},{}],181:[function(require,module,exports){ +},{}],189:[function(require,module,exports){ module["exports"] = [ "NSW", "QLD", "NT", "SA", @@ -15204,11 +23196,11 @@ "TAS", "ACT", "VIC" ]; -},{}],182:[function(require,module,exports){ +},{}],190:[function(require,module,exports){ module["exports"] = [ "Avenue", "Boulevard", "Circle", "Circuit", @@ -15245,48 +23237,48 @@ "Trail", "View Rd", "Way" ]; -},{}],183:[function(require,module,exports){ +},{}],191:[function(require,module,exports){ var company = {}; module['exports'] = company; company.suffix = require("./suffix"); -},{"./suffix":184}],184:[function(require,module,exports){ +},{"./suffix":192}],192:[function(require,module,exports){ module["exports"] = [ "Pty Ltd", "and Sons", "Corp", "Group", "Brothers", "Partners" ]; -},{}],185:[function(require,module,exports){ +},{}],193:[function(require,module,exports){ var en_AU = {}; module['exports'] = en_AU; en_AU.title = "Australia (English)"; en_AU.name = require("./name"); en_AU.company = require("./company"); en_AU.internet = require("./internet"); en_AU.address = require("./address"); en_AU.phone_number = require("./phone_number"); -},{"./address":178,"./company":183,"./internet":187,"./name":189,"./phone_number":192}],186:[function(require,module,exports){ +},{"./address":186,"./company":191,"./internet":195,"./name":197,"./phone_number":200}],194:[function(require,module,exports){ module["exports"] = [ "com.au", "com", "net.au", "net", "org.au", "org" ]; -},{}],187:[function(require,module,exports){ +},{}],195:[function(require,module,exports){ arguments[4][88][0].apply(exports,arguments) -},{"./domain_suffix":186,"/Users/a/dev/faker.js/lib/locales/de_CH/internet/index.js":88}],188:[function(require,module,exports){ +},{"./domain_suffix":194,"/Users/a/dev/faker.js/lib/locales/de_CH/internet/index.js":88}],196:[function(require,module,exports){ module["exports"] = [ "William", "Jack", "Oliver", "Joshua", @@ -15486,17 +23478,17 @@ "Leah", "Eve", "Kiara" ]; -},{}],189:[function(require,module,exports){ +},{}],197:[function(require,module,exports){ var name = {}; module['exports'] = name; name.first_name = require("./first_name"); name.last_name = require("./last_name"); -},{"./first_name":188,"./last_name":190}],190:[function(require,module,exports){ +},{"./first_name":196,"./last_name":198}],198:[function(require,module,exports){ module["exports"] = [ "Smith", "Jones", "Williams", "Brown", @@ -15782,29 +23774,29 @@ "Williamson", "Windler", "Wolf" ]; -},{}],191:[function(require,module,exports){ +},{}],199:[function(require,module,exports){ module["exports"] = [ "0# #### ####", "+61 # #### ####", "04## ### ###", "+61 4## ### ###" ]; -},{}],192:[function(require,module,exports){ +},{}],200:[function(require,module,exports){ arguments[4][47][0].apply(exports,arguments) -},{"./formats":191,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],193:[function(require,module,exports){ +},{"./formats":199,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],201:[function(require,module,exports){ var en_BORK = {}; module['exports'] = en_BORK; en_BORK.title = "Bork (English)"; en_BORK.lorem = require("./lorem"); -},{"./lorem":194}],194:[function(require,module,exports){ +},{"./lorem":202}],202:[function(require,module,exports){ arguments[4][38][0].apply(exports,arguments) -},{"./words":195,"/Users/a/dev/faker.js/lib/locales/de/lorem/index.js":38}],195:[function(require,module,exports){ +},{"./words":203,"/Users/a/dev/faker.js/lib/locales/de/lorem/index.js":38}],203:[function(require,module,exports){ module["exports"] = [ "Boot", "I", "Nu", "Nur", @@ -15907,29 +23899,29 @@ "yuoo", "zee", "zeere-a" ]; -},{}],196:[function(require,module,exports){ +},{}],204:[function(require,module,exports){ module["exports"] = [ "Canada" ]; -},{}],197:[function(require,module,exports){ +},{}],205:[function(require,module,exports){ var address = {}; module['exports'] = address; address.state = require("./state"); address.state_abbr = require("./state_abbr"); address.default_country = require("./default_country"); address.postcode = require('./postcode.js'); -},{"./default_country":196,"./postcode.js":198,"./state":199,"./state_abbr":200}],198:[function(require,module,exports){ +},{"./default_country":204,"./postcode.js":206,"./state":207,"./state_abbr":208}],206:[function(require,module,exports){ module["exports"] = [ "?#? #?#" ]; -},{}],199:[function(require,module,exports){ +},{}],207:[function(require,module,exports){ module["exports"] = [ "Alberta", "British Columbia", "Manitoba", "New Brunswick", @@ -15942,11 +23934,11 @@ "Quebec", "Saskatchewan", "Yukon" ]; -},{}],200:[function(require,module,exports){ +},{}],208:[function(require,module,exports){ module["exports"] = [ "AB", "BC", "MB", "NB", @@ -15959,39 +23951,39 @@ "QC", "SK", "YT" ]; -},{}],201:[function(require,module,exports){ +},{}],209:[function(require,module,exports){ var en_CA = {}; module['exports'] = en_CA; en_CA.title = "Canada (English)"; en_CA.address = require("./address"); en_CA.internet = require("./internet"); en_CA.phone_number = require("./phone_number"); -},{"./address":197,"./internet":204,"./phone_number":206}],202:[function(require,module,exports){ +},{"./address":205,"./internet":212,"./phone_number":214}],210:[function(require,module,exports){ module["exports"] = [ "ca", "com", "biz", "info", "name", "net", "org" ]; -},{}],203:[function(require,module,exports){ +},{}],211:[function(require,module,exports){ module["exports"] = [ "gmail.com", "yahoo.ca", "hotmail.com" ]; -},{}],204:[function(require,module,exports){ +},{}],212:[function(require,module,exports){ arguments[4][37][0].apply(exports,arguments) -},{"./domain_suffix":202,"./free_email":203,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],205:[function(require,module,exports){ +},{"./domain_suffix":210,"./free_email":211,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],213:[function(require,module,exports){ module["exports"] = [ "###-###-####", "(###)###-####", "###.###.####", "1-###-###-####", @@ -16007,13 +23999,13 @@ "(###)###-#### x#####", "1-###-###-#### x#####", "###.###.#### x#####" ]; -},{}],206:[function(require,module,exports){ +},{}],214:[function(require,module,exports){ arguments[4][47][0].apply(exports,arguments) -},{"./formats":205,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],207:[function(require,module,exports){ +},{"./formats":213,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],215:[function(require,module,exports){ module["exports"] = [ "Avon", "Bedfordshire", "Berkshire", "Borders", @@ -16083,60 +24075,67 @@ "West Yorkshire", "Wiltshire", "Worcestershire" ]; -},{}],208:[function(require,module,exports){ +},{}],216:[function(require,module,exports){ module["exports"] = [ "England", "Scotland", "Wales", "Northern Ireland" ]; -},{}],209:[function(require,module,exports){ +},{}],217:[function(require,module,exports){ var address = {}; module['exports'] = address; address.county = require("./county"); address.uk_country = require("./uk_country"); address.default_country = require("./default_country"); +address.postcode = require("./postcode"); -},{"./county":207,"./default_country":208,"./uk_country":210}],210:[function(require,module,exports){ -module.exports=require(208) -},{"/Users/a/dev/faker.js/lib/locales/en_GB/address/default_country.js":208}],211:[function(require,module,exports){ +},{"./county":215,"./default_country":216,"./postcode":218,"./uk_country":219}],218:[function(require,module,exports){ module["exports"] = [ + "??# #??", + "??## #??", +]; + +},{}],219:[function(require,module,exports){ +module.exports=require(216) +},{"/Users/a/dev/faker.js/lib/locales/en_GB/address/default_country.js":216}],220:[function(require,module,exports){ +module["exports"] = [ "074## ######", "075## ######", "076## ######", "077## ######", "078## ######", "079## ######" ]; -},{}],212:[function(require,module,exports){ +},{}],221:[function(require,module,exports){ arguments[4][29][0].apply(exports,arguments) -},{"./formats":211,"/Users/a/dev/faker.js/lib/locales/de/cell_phone/index.js":29}],213:[function(require,module,exports){ +},{"./formats":220,"/Users/a/dev/faker.js/lib/locales/de/cell_phone/index.js":29}],222:[function(require,module,exports){ var en_GB = {}; module['exports'] = en_GB; en_GB.title = "Great Britain (English)"; en_GB.address = require("./address"); en_GB.internet = require("./internet"); en_GB.phone_number = require("./phone_number"); en_GB.cell_phone = require("./cell_phone"); -},{"./address":209,"./cell_phone":212,"./internet":215,"./phone_number":217}],214:[function(require,module,exports){ +},{"./address":217,"./cell_phone":221,"./internet":224,"./phone_number":226}],223:[function(require,module,exports){ module["exports"] = [ "co.uk", "com", "biz", "info", "name" ]; -},{}],215:[function(require,module,exports){ +},{}],224:[function(require,module,exports){ arguments[4][88][0].apply(exports,arguments) -},{"./domain_suffix":214,"/Users/a/dev/faker.js/lib/locales/de_CH/internet/index.js":88}],216:[function(require,module,exports){ +},{"./domain_suffix":223,"/Users/a/dev/faker.js/lib/locales/de_CH/internet/index.js":88}],225:[function(require,module,exports){ module["exports"] = [ "01#### #####", "01### ######", "01#1 ### ####", "011# ### ####", @@ -16151,13 +24150,13 @@ "01### #####", "0500 ######", "0800 ######" ]; -},{}],217:[function(require,module,exports){ +},{}],226:[function(require,module,exports){ arguments[4][47][0].apply(exports,arguments) -},{"./formats":216,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],218:[function(require,module,exports){ +},{"./formats":225,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],227:[function(require,module,exports){ module["exports"] = [ "Carlow", "Cavan", "Clare", "Cork", @@ -16183,54 +24182,54 @@ "Westmeath", "Wexford", "Wicklow" ]; -},{}],219:[function(require,module,exports){ +},{}],228:[function(require,module,exports){ module["exports"] = [ "Ireland" ]; -},{}],220:[function(require,module,exports){ +},{}],229:[function(require,module,exports){ var address = {}; module['exports'] = address; address.county = require("./county"); address.default_country = require("./default_country"); -},{"./county":218,"./default_country":219}],221:[function(require,module,exports){ +},{"./county":227,"./default_country":228}],230:[function(require,module,exports){ module["exports"] = [ "082 ### ####", "083 ### ####", "085 ### ####", "086 ### ####", "087 ### ####", "089 ### ####" ]; -},{}],222:[function(require,module,exports){ +},{}],231:[function(require,module,exports){ arguments[4][29][0].apply(exports,arguments) -},{"./formats":221,"/Users/a/dev/faker.js/lib/locales/de/cell_phone/index.js":29}],223:[function(require,module,exports){ +},{"./formats":230,"/Users/a/dev/faker.js/lib/locales/de/cell_phone/index.js":29}],232:[function(require,module,exports){ var en_IE = {}; module['exports'] = en_IE; en_IE.title = "Ireland (English)"; en_IE.address = require("./address"); en_IE.internet = require("./internet"); en_IE.phone_number = require("./phone_number"); en_IE.cell_phone = require("./cell_phone"); -},{"./address":220,"./cell_phone":222,"./internet":225,"./phone_number":227}],224:[function(require,module,exports){ +},{"./address":229,"./cell_phone":231,"./internet":234,"./phone_number":236}],233:[function(require,module,exports){ module["exports"] = [ "ie", "com", "net", "info", "eu" ]; -},{}],225:[function(require,module,exports){ +},{}],234:[function(require,module,exports){ arguments[4][88][0].apply(exports,arguments) -},{"./domain_suffix":224,"/Users/a/dev/faker.js/lib/locales/de_CH/internet/index.js":88}],226:[function(require,module,exports){ +},{"./domain_suffix":233,"/Users/a/dev/faker.js/lib/locales/de_CH/internet/index.js":88}],235:[function(require,module,exports){ module["exports"] = [ "01 #######", "021 #######", "022 #######", "023 #######", @@ -16279,31 +24278,31 @@ "097 #######", "098 #######", "099 #######" ]; -},{}],227:[function(require,module,exports){ +},{}],236:[function(require,module,exports){ arguments[4][47][0].apply(exports,arguments) -},{"./formats":226,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],228:[function(require,module,exports){ +},{"./formats":235,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],237:[function(require,module,exports){ module["exports"] = [ "India", "Indian Republic", "Bharat", "Hindustan" ]; -},{}],229:[function(require,module,exports){ +},{}],238:[function(require,module,exports){ var address = {}; module['exports'] = address; address.postcode = require("./postcode"); address.state = require("./state"); address.state_abbr = require("./state_abbr"); address.default_country = require("./default_country"); -},{"./default_country":228,"./postcode":230,"./state":231,"./state_abbr":232}],230:[function(require,module,exports){ -module.exports=require(198) -},{"/Users/a/dev/faker.js/lib/locales/en_CA/address/postcode.js":198}],231:[function(require,module,exports){ +},{"./default_country":237,"./postcode":239,"./state":240,"./state_abbr":241}],239:[function(require,module,exports){ +module.exports=require(206) +},{"/Users/a/dev/faker.js/lib/locales/en_CA/address/postcode.js":206}],240:[function(require,module,exports){ module["exports"] = [ "Andra Pradesh", "Arunachal Pradesh", "Assam", "Bihar", @@ -16338,11 +24337,11 @@ "Delhi", "Lakshadweep", "Pondicherry" ]; -},{}],232:[function(require,module,exports){ +},{}],241:[function(require,module,exports){ module["exports"] = [ "AP", "AR", "AS", "BR", @@ -16377,34 +24376,34 @@ "DD", "LD", "PY" ]; -},{}],233:[function(require,module,exports){ -arguments[4][183][0].apply(exports,arguments) -},{"./suffix":234,"/Users/a/dev/faker.js/lib/locales/en_AU/company/index.js":183}],234:[function(require,module,exports){ +},{}],242:[function(require,module,exports){ +arguments[4][191][0].apply(exports,arguments) +},{"./suffix":243,"/Users/a/dev/faker.js/lib/locales/en_AU/company/index.js":191}],243:[function(require,module,exports){ module["exports"] = [ "Pvt Ltd", "Limited", "Ltd", "and Sons", "Corp", "Group", "Brothers" ]; -},{}],235:[function(require,module,exports){ +},{}],244:[function(require,module,exports){ var en_IND = {}; module['exports'] = en_IND; en_IND.title = "India (English)"; en_IND.name = require("./name"); en_IND.address = require("./address"); en_IND.internet = require("./internet"); en_IND.company = require("./company"); en_IND.phone_number = require("./phone_number"); -},{"./address":229,"./company":233,"./internet":238,"./name":240,"./phone_number":243}],236:[function(require,module,exports){ +},{"./address":238,"./company":242,"./internet":247,"./name":249,"./phone_number":252}],245:[function(require,module,exports){ module["exports"] = [ "in", "com", "biz", "info", @@ -16412,20 +24411,20 @@ "net", "org", "co.in" ]; -},{}],237:[function(require,module,exports){ +},{}],246:[function(require,module,exports){ module["exports"] = [ "gmail.com", "yahoo.co.in", "hotmail.com" ]; -},{}],238:[function(require,module,exports){ +},{}],247:[function(require,module,exports){ arguments[4][37][0].apply(exports,arguments) -},{"./domain_suffix":236,"./free_email":237,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],239:[function(require,module,exports){ +},{"./domain_suffix":245,"./free_email":246,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],248:[function(require,module,exports){ module["exports"] = [ "Aadrika", "Aanandinii", "Aaratrika", "Aarya", @@ -17187,13 +25186,13 @@ "Yogendra", "Yoginder", "Yogesh" ]; -},{}],240:[function(require,module,exports){ -arguments[4][189][0].apply(exports,arguments) -},{"./first_name":239,"./last_name":241,"/Users/a/dev/faker.js/lib/locales/en_AU/name/index.js":189}],241:[function(require,module,exports){ +},{}],249:[function(require,module,exports){ +arguments[4][197][0].apply(exports,arguments) +},{"./first_name":248,"./last_name":250,"/Users/a/dev/faker.js/lib/locales/en_AU/name/index.js":197}],250:[function(require,module,exports){ module["exports"] = [ "Abbott", "Achari", "Acharya", "Adiga", @@ -17282,33 +25281,33 @@ "Varma", "Varman", "Verma" ]; -},{}],242:[function(require,module,exports){ +},{}],251:[function(require,module,exports){ module["exports"] = [ "+91###-###-####", "+91##########", "+91-###-#######" ]; -},{}],243:[function(require,module,exports){ +},{}],252:[function(require,module,exports){ arguments[4][47][0].apply(exports,arguments) -},{"./formats":242,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],244:[function(require,module,exports){ +},{"./formats":251,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],253:[function(require,module,exports){ module["exports"] = [ "United States", "United States of America", "USA" ]; -},{}],245:[function(require,module,exports){ +},{}],254:[function(require,module,exports){ var address = {}; module['exports'] = address; address.default_country = require("./default_country"); address.postcode_by_state = require("./postcode_by_state"); -},{"./default_country":244,"./postcode_by_state":246}],246:[function(require,module,exports){ +},{"./default_country":253,"./postcode_by_state":255}],255:[function(require,module,exports){ module["exports"] = { "AL": "350##", "AK": "995##", "AS": "967##", "AZ": "850##", @@ -17360,32 +25359,32 @@ "WV": "247##", "WI": "549##", "WY": "831##" }; -},{}],247:[function(require,module,exports){ +},{}],256:[function(require,module,exports){ var en_US = {}; module['exports'] = en_US; en_US.title = "United States (English)"; en_US.internet = require("./internet"); en_US.address = require("./address"); en_US.phone_number = require("./phone_number"); -},{"./address":245,"./internet":249,"./phone_number":252}],248:[function(require,module,exports){ +},{"./address":254,"./internet":258,"./phone_number":261}],257:[function(require,module,exports){ module["exports"] = [ "com", "us", "biz", "info", "name", "net", "org" ]; -},{}],249:[function(require,module,exports){ +},{}],258:[function(require,module,exports){ arguments[4][88][0].apply(exports,arguments) -},{"./domain_suffix":248,"/Users/a/dev/faker.js/lib/locales/de_CH/internet/index.js":88}],250:[function(require,module,exports){ +},{"./domain_suffix":257,"/Users/a/dev/faker.js/lib/locales/de_CH/internet/index.js":88}],259:[function(require,module,exports){ module["exports"] = [ "201", "202", "203", "205", @@ -17668,26 +25667,26 @@ "984", "985", "989" ]; -},{}],251:[function(require,module,exports){ -module.exports=require(250) -},{"/Users/a/dev/faker.js/lib/locales/en_US/phone_number/area_code.js":250}],252:[function(require,module,exports){ +},{}],260:[function(require,module,exports){ +module.exports=require(259) +},{"/Users/a/dev/faker.js/lib/locales/en_US/phone_number/area_code.js":259}],261:[function(require,module,exports){ var phone_number = {}; module['exports'] = phone_number; phone_number.area_code = require("./area_code"); phone_number.exchange_code = require("./exchange_code"); -},{"./area_code":250,"./exchange_code":251}],253:[function(require,module,exports){ -module.exports=require(176) -},{"/Users/a/dev/faker.js/lib/locales/en_AU/address/building_number.js":176}],254:[function(require,module,exports){ +},{"./area_code":259,"./exchange_code":260}],262:[function(require,module,exports){ +module.exports=require(184) +},{"/Users/a/dev/faker.js/lib/locales/en_AU/address/building_number.js":184}],263:[function(require,module,exports){ module["exports"] = [ "#{city_prefix}" ]; -},{}],255:[function(require,module,exports){ +},{}],264:[function(require,module,exports){ module["exports"] = [ "Bondi", "Burleigh Heads", "Carlton", "Fitzroy", @@ -17699,13 +25698,13 @@ "St Kilda", "Surry Hills", "Yarra Valley" ]; -},{}],256:[function(require,module,exports){ -module.exports=require(177) -},{"/Users/a/dev/faker.js/lib/locales/en_AU/address/default_country.js":177}],257:[function(require,module,exports){ +},{}],265:[function(require,module,exports){ +module.exports=require(185) +},{"/Users/a/dev/faker.js/lib/locales/en_AU/address/default_country.js":185}],266:[function(require,module,exports){ var address = {}; module['exports'] = address; address.street_root = require("./street_root"); address.street_name = require("./street_name"); address.city_prefix = require("./city_prefix"); @@ -17716,58 +25715,58 @@ address.postcode = require("./postcode"); address.building_number = require("./building_number"); address.street_suffix = require("./street_suffix"); address.default_country = require("./default_country"); -},{"./building_number":253,"./city":254,"./city_prefix":255,"./default_country":256,"./postcode":258,"./region":259,"./state":260,"./state_abbr":261,"./street_name":262,"./street_root":263,"./street_suffix":264}],258:[function(require,module,exports){ -module.exports=require(179) -},{"/Users/a/dev/faker.js/lib/locales/en_AU/address/postcode.js":179}],259:[function(require,module,exports){ +},{"./building_number":262,"./city":263,"./city_prefix":264,"./default_country":265,"./postcode":267,"./region":268,"./state":269,"./state_abbr":270,"./street_name":271,"./street_root":272,"./street_suffix":273}],267:[function(require,module,exports){ +module.exports=require(187) +},{"/Users/a/dev/faker.js/lib/locales/en_AU/address/postcode.js":187}],268:[function(require,module,exports){ module["exports"] = [ "South East Queensland", "Wide Bay Burnett", "Margaret River", "Port Pirie", "Gippsland", "Elizabeth", "Barossa" ]; -},{}],260:[function(require,module,exports){ -module.exports=require(180) -},{"/Users/a/dev/faker.js/lib/locales/en_AU/address/state.js":180}],261:[function(require,module,exports){ -module.exports=require(181) -},{"/Users/a/dev/faker.js/lib/locales/en_AU/address/state_abbr.js":181}],262:[function(require,module,exports){ +},{}],269:[function(require,module,exports){ +module.exports=require(188) +},{"/Users/a/dev/faker.js/lib/locales/en_AU/address/state.js":188}],270:[function(require,module,exports){ +module.exports=require(189) +},{"/Users/a/dev/faker.js/lib/locales/en_AU/address/state_abbr.js":189}],271:[function(require,module,exports){ module.exports=require(26) -},{"/Users/a/dev/faker.js/lib/locales/de/address/street_name.js":26}],263:[function(require,module,exports){ +},{"/Users/a/dev/faker.js/lib/locales/de/address/street_name.js":26}],272:[function(require,module,exports){ module["exports"] = [ "Ramsay Street", "Bonnie Doon", "Cavill Avenue", "Queen Street" ]; -},{}],264:[function(require,module,exports){ -module.exports=require(182) -},{"/Users/a/dev/faker.js/lib/locales/en_AU/address/street_suffix.js":182}],265:[function(require,module,exports){ -module.exports=require(183) -},{"./suffix":266,"/Users/a/dev/faker.js/lib/locales/en_AU/company/index.js":183}],266:[function(require,module,exports){ -module.exports=require(184) -},{"/Users/a/dev/faker.js/lib/locales/en_AU/company/suffix.js":184}],267:[function(require,module,exports){ +},{}],273:[function(require,module,exports){ +module.exports=require(190) +},{"/Users/a/dev/faker.js/lib/locales/en_AU/address/street_suffix.js":190}],274:[function(require,module,exports){ +module.exports=require(191) +},{"./suffix":275,"/Users/a/dev/faker.js/lib/locales/en_AU/company/index.js":191}],275:[function(require,module,exports){ +module.exports=require(192) +},{"/Users/a/dev/faker.js/lib/locales/en_AU/company/suffix.js":192}],276:[function(require,module,exports){ var en_au_ocker = {}; module['exports'] = en_au_ocker; en_au_ocker.title = "Australia Ocker (English)"; en_au_ocker.name = require("./name"); en_au_ocker.company = require("./company"); en_au_ocker.internet = require("./internet"); en_au_ocker.address = require("./address"); en_au_ocker.phone_number = require("./phone_number"); -},{"./address":257,"./company":265,"./internet":269,"./name":271,"./phone_number":275}],268:[function(require,module,exports){ -module.exports=require(186) -},{"/Users/a/dev/faker.js/lib/locales/en_AU/internet/domain_suffix.js":186}],269:[function(require,module,exports){ +},{"./address":266,"./company":274,"./internet":278,"./name":280,"./phone_number":284}],277:[function(require,module,exports){ +module.exports=require(194) +},{"/Users/a/dev/faker.js/lib/locales/en_AU/internet/domain_suffix.js":194}],278:[function(require,module,exports){ arguments[4][88][0].apply(exports,arguments) -},{"./domain_suffix":268,"/Users/a/dev/faker.js/lib/locales/de_CH/internet/index.js":88}],270:[function(require,module,exports){ +},{"./domain_suffix":277,"/Users/a/dev/faker.js/lib/locales/de_CH/internet/index.js":88}],279:[function(require,module,exports){ module["exports"] = [ "Charlotte", "Ava", "Chloe", "Emily", @@ -17871,18 +25870,18 @@ "Nigel", "Matt", "Sean" ]; -},{}],271:[function(require,module,exports){ +},{}],280:[function(require,module,exports){ var name = {}; module['exports'] = name; name.first_name = require("./first_name"); name.last_name = require("./last_name"); name.ocker_first_name = require("./ocker_first_name"); -},{"./first_name":270,"./last_name":272,"./ocker_first_name":273}],272:[function(require,module,exports){ +},{"./first_name":279,"./last_name":281,"./ocker_first_name":282}],281:[function(require,module,exports){ module["exports"] = [ "Smith", "Jones", "Williams", "Brown", @@ -17906,36 +25905,36 @@ "Ridge", "Connolly", "LeQuesne" ]; -},{}],273:[function(require,module,exports){ +},{}],282:[function(require,module,exports){ module["exports"] = [ "Bazza", "Bluey", "Davo", "Johno", "Shano", "Shazza" ]; -},{}],274:[function(require,module,exports){ -module.exports=require(191) -},{"/Users/a/dev/faker.js/lib/locales/en_AU/phone_number/formats.js":191}],275:[function(require,module,exports){ +},{}],283:[function(require,module,exports){ +module.exports=require(199) +},{"/Users/a/dev/faker.js/lib/locales/en_AU/phone_number/formats.js":199}],284:[function(require,module,exports){ arguments[4][47][0].apply(exports,arguments) -},{"./formats":274,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],276:[function(require,module,exports){ +},{"./formats":283,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],285:[function(require,module,exports){ module["exports"] = [ " s/n.", ", #", ", ##", " #", " ##" ]; -},{}],277:[function(require,module,exports){ -module.exports=require(254) -},{"/Users/a/dev/faker.js/lib/locales/en_au_ocker/address/city.js":254}],278:[function(require,module,exports){ +},{}],286:[function(require,module,exports){ +module.exports=require(263) +},{"/Users/a/dev/faker.js/lib/locales/en_au_ocker/address/city.js":263}],287:[function(require,module,exports){ module["exports"] = [ "Parla", "Telde", "Baracaldo", "San Fernando", @@ -18064,11 +26063,11 @@ "Reus", "Calahorra", "Inca" ]; -},{}],279:[function(require,module,exports){ +},{}],288:[function(require,module,exports){ module["exports"] = [ "Afganistán", "Albania", "Argelia", "Andorra", @@ -18248,16 +26247,16 @@ "Yemen", "Zambia", "Zimbabwe" ]; -},{}],280:[function(require,module,exports){ +},{}],289:[function(require,module,exports){ module["exports"] = [ "España" ]; -},{}],281:[function(require,module,exports){ +},{}],290:[function(require,module,exports){ var address = {}; module['exports'] = address; address.city_prefix = require("./city_prefix"); address.country = require("./country"); address.building_number = require("./building_number"); @@ -18271,16 +26270,16 @@ address.city = require("./city"); address.street_name = require("./street_name"); address.street_address = require("./street_address"); address.default_country = require("./default_country"); -},{"./building_number":276,"./city":277,"./city_prefix":278,"./country":279,"./default_country":280,"./postcode":282,"./province":283,"./secondary_address":284,"./state":285,"./state_abbr":286,"./street_address":287,"./street_name":288,"./street_suffix":289,"./time_zone":290}],282:[function(require,module,exports){ +},{"./building_number":285,"./city":286,"./city_prefix":287,"./country":288,"./default_country":289,"./postcode":291,"./province":292,"./secondary_address":293,"./state":294,"./state_abbr":295,"./street_address":296,"./street_name":297,"./street_suffix":298,"./time_zone":299}],291:[function(require,module,exports){ module["exports"] = [ "#####" ]; -},{}],283:[function(require,module,exports){ +},{}],292:[function(require,module,exports){ module["exports"] = [ "Álava", "Albacete", "Alicante", "Almería", @@ -18330,17 +26329,17 @@ "Vizcaya", "Zamora", "Zaragoza" ]; -},{}],284:[function(require,module,exports){ +},{}],293:[function(require,module,exports){ module["exports"] = [ "Esc. ###", "Puerta ###" ]; -},{}],285:[function(require,module,exports){ +},{}],294:[function(require,module,exports){ module["exports"] = [ "Andalucía", "Aragón", "Principado de Asturias", "Baleares", @@ -18357,11 +26356,11 @@ "Navarra", "País Vasco", "Región de Murcia" ]; -},{}],286:[function(require,module,exports){ +},{}],295:[function(require,module,exports){ module["exports"] = [ "And", "Ara", "Ast", "Bal", @@ -18378,23 +26377,23 @@ "Nav", "Vas", "Mur" ]; -},{}],287:[function(require,module,exports){ +},{}],296:[function(require,module,exports){ module["exports"] = [ "#{street_name}#{building_number}", "#{street_name}#{building_number} #{secondary_address}" ]; -},{}],288:[function(require,module,exports){ +},{}],297:[function(require,module,exports){ module["exports"] = [ "#{street_suffix} #{Name.first_name}", "#{street_suffix} #{Name.first_name} #{Name.last_name}" ]; -},{}],289:[function(require,module,exports){ +},{}],298:[function(require,module,exports){ module["exports"] = [ "Aldea", "Apartamento", "Arrabal", "Arroyo", @@ -18464,11 +26463,11 @@ "Urbanización", "Vía", "Vía Pública" ]; -},{}],290:[function(require,module,exports){ +},{}],299:[function(require,module,exports){ module["exports"] = [ "Pacífico/Midway", "Pacífico/Pago_Pago", "Pacífico/Honolulu", "America/Juneau", @@ -18611,21 +26610,21 @@ "Pacífico/Tongatapu", "Pacífico/Fakaofo", "Pacífico/Apia" ]; -},{}],291:[function(require,module,exports){ +},{}],300:[function(require,module,exports){ module["exports"] = [ "6##-###-###", "6##.###.###", "6## ### ###", "6########" ]; -},{}],292:[function(require,module,exports){ +},{}],301:[function(require,module,exports){ arguments[4][29][0].apply(exports,arguments) -},{"./formats":291,"/Users/a/dev/faker.js/lib/locales/de/cell_phone/index.js":29}],293:[function(require,module,exports){ +},{"./formats":300,"/Users/a/dev/faker.js/lib/locales/de/cell_phone/index.js":29}],302:[function(require,module,exports){ module["exports"] = [ "Adaptativo", "Avanzado", "Asimilado", "Automatizado", @@ -18710,11 +26709,11 @@ "Versatil", "Virtual", "Visionario" ]; -},{}],294:[function(require,module,exports){ +},{}],303:[function(require,module,exports){ module["exports"] = [ "24 horas", "24/7", "3rd generación", "4th generación", @@ -18795,28 +26794,28 @@ "vía web", "defectos cero", "tolerancia cero" ]; -},{}],295:[function(require,module,exports){ +},{}],304:[function(require,module,exports){ var company = {}; module['exports'] = company; company.suffix = require("./suffix"); company.noun = require("./noun"); company.descriptor = require("./descriptor"); company.adjective = require("./adjective"); company.name = require("./name"); -},{"./adjective":293,"./descriptor":294,"./name":296,"./noun":297,"./suffix":298}],296:[function(require,module,exports){ +},{"./adjective":302,"./descriptor":303,"./name":305,"./noun":306,"./suffix":307}],305:[function(require,module,exports){ module["exports"] = [ "#{Name.last_name} #{suffix}", "#{Name.last_name} y #{Name.last_name}", "#{Name.last_name} #{Name.last_name} #{suffix}", "#{Name.last_name}, #{Name.last_name} y #{Name.last_name} Asociados" ]; -},{}],297:[function(require,module,exports){ +},{}],306:[function(require,module,exports){ module["exports"] = [ "habilidad", "acceso", "adaptador", "algoritmo", @@ -18909,43 +26908,43 @@ "utilización", "website", "fuerza de trabajo" ]; -},{}],298:[function(require,module,exports){ +},{}],307:[function(require,module,exports){ module["exports"] = [ "S.L.", "e Hijos", "S.A.", "Hermanos" ]; -},{}],299:[function(require,module,exports){ +},{}],308:[function(require,module,exports){ var es = {}; module['exports'] = es; es.title = "Spanish"; es.address = require("./address"); es.company = require("./company"); es.internet = require("./internet"); es.name = require("./name"); es.phone_number = require("./phone_number"); es.cell_phone = require("./cell_phone"); -},{"./address":281,"./cell_phone":292,"./company":295,"./internet":302,"./name":304,"./phone_number":311}],300:[function(require,module,exports){ +},{"./address":290,"./cell_phone":301,"./company":304,"./internet":311,"./name":313,"./phone_number":320}],309:[function(require,module,exports){ module["exports"] = [ "com", "es", "info", "com.es", "org" ]; -},{}],301:[function(require,module,exports){ +},{}],310:[function(require,module,exports){ module.exports=require(36) -},{"/Users/a/dev/faker.js/lib/locales/de/internet/free_email.js":36}],302:[function(require,module,exports){ +},{"/Users/a/dev/faker.js/lib/locales/de/internet/free_email.js":36}],311:[function(require,module,exports){ arguments[4][37][0].apply(exports,arguments) -},{"./domain_suffix":300,"./free_email":301,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],303:[function(require,module,exports){ +},{"./domain_suffix":309,"./free_email":310,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],312:[function(require,module,exports){ module["exports"] = [ "Adán", "Agustín", "Alberto", "Alejandro", @@ -19157,13 +27156,13 @@ "Victoria", "Virginia", "Yolanda" ]; -},{}],304:[function(require,module,exports){ -arguments[4][165][0].apply(exports,arguments) -},{"./first_name":303,"./last_name":305,"./name":306,"./prefix":307,"./suffix":308,"./title":309,"/Users/a/dev/faker.js/lib/locales/en/name/index.js":165}],305:[function(require,module,exports){ +},{}],313:[function(require,module,exports){ +arguments[4][171][0].apply(exports,arguments) +},{"./first_name":312,"./last_name":314,"./name":315,"./prefix":316,"./suffix":317,"./title":318,"/Users/a/dev/faker.js/lib/locales/en/name/index.js":171}],314:[function(require,module,exports){ module["exports"] = [ "Abeyta", "Abrego", "Abreu", "Acevedo", @@ -19801,29 +27800,29 @@ "Zelaya", "Zepeda", "Zúñiga" ]; -},{}],306:[function(require,module,exports){ +},{}],315:[function(require,module,exports){ module["exports"] = [ "#{prefix} #{first_name} #{last_name} #{last_name}", "#{first_name} #{last_name} #{last_name}", "#{first_name} #{last_name} #{last_name}", "#{first_name} #{last_name} #{last_name}", "#{first_name} #{last_name} #{last_name}" ]; -},{}],307:[function(require,module,exports){ +},{}],316:[function(require,module,exports){ module["exports"] = [ "Sr.", "Sra.", "Sta." ]; -},{}],308:[function(require,module,exports){ -module.exports=require(169) -},{"/Users/a/dev/faker.js/lib/locales/en/name/suffix.js":169}],309:[function(require,module,exports){ +},{}],317:[function(require,module,exports){ +module.exports=require(175) +},{"/Users/a/dev/faker.js/lib/locales/en/name/suffix.js":175}],318:[function(require,module,exports){ module["exports"] = { "descriptor": [ "Jefe", "Senior", "Directo", @@ -19911,34 +27910,34 @@ "Representante", "Estratega" ] }; -},{}],310:[function(require,module,exports){ +},{}],319:[function(require,module,exports){ module["exports"] = [ "9##-###-###", "9##.###.###", "9## ### ###", "9########" ]; -},{}],311:[function(require,module,exports){ +},{}],320:[function(require,module,exports){ arguments[4][47][0].apply(exports,arguments) -},{"./formats":310,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],312:[function(require,module,exports){ +},{"./formats":319,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],321:[function(require,module,exports){ module["exports"] = [ " s/n.", ", #", ", ##", " #", " ##", " ###", " ####" ]; -},{}],313:[function(require,module,exports){ -module.exports=require(254) -},{"/Users/a/dev/faker.js/lib/locales/en_au_ocker/address/city.js":254}],314:[function(require,module,exports){ +},{}],322:[function(require,module,exports){ +module.exports=require(263) +},{"/Users/a/dev/faker.js/lib/locales/en_au_ocker/address/city.js":263}],323:[function(require,module,exports){ module["exports"] = [ "Aguascalientes", "Apodaca", "Buenavista", "Campeche", @@ -20068,13 +28067,13 @@ "Zamora-Jacona", "Zapopan", "Zitacuaro" ]; -},{}],315:[function(require,module,exports){ -module.exports=require(94) -},{"/Users/a/dev/faker.js/lib/locales/en/address/city_suffix.js":94}],316:[function(require,module,exports){ +},{}],324:[function(require,module,exports){ +module.exports=require(99) +},{"/Users/a/dev/faker.js/lib/locales/en/address/city_suffix.js":99}],325:[function(require,module,exports){ module["exports"] = [ "Afganistán", "Albania", "Argelia", "Andorra", @@ -20254,16 +28253,16 @@ "Yemen", "Zambia", "Zimbabwe" ]; -},{}],317:[function(require,module,exports){ +},{}],326:[function(require,module,exports){ module["exports"] = [ "México" ]; -},{}],318:[function(require,module,exports){ +},{}],327:[function(require,module,exports){ var address = {}; module['exports'] = address; address.city_prefix = require("./city_prefix"); address.city_suffix = require("./city_suffix"); address.country = require("./country"); @@ -20277,20 +28276,20 @@ address.city = require("./city"); address.street = require("./street"); address.street_name = require("./street_name"); address.street_address = require("./street_address"); address.default_country = require("./default_country"); -},{"./building_number":312,"./city":313,"./city_prefix":314,"./city_suffix":315,"./country":316,"./default_country":317,"./postcode":319,"./secondary_address":320,"./state":321,"./state_abbr":322,"./street":323,"./street_address":324,"./street_name":325,"./street_suffix":326,"./time_zone":327}],319:[function(require,module,exports){ -module.exports=require(282) -},{"/Users/a/dev/faker.js/lib/locales/es/address/postcode.js":282}],320:[function(require,module,exports){ +},{"./building_number":321,"./city":322,"./city_prefix":323,"./city_suffix":324,"./country":325,"./default_country":326,"./postcode":328,"./secondary_address":329,"./state":330,"./state_abbr":331,"./street":332,"./street_address":333,"./street_name":334,"./street_suffix":335,"./time_zone":336}],328:[function(require,module,exports){ +module.exports=require(291) +},{"/Users/a/dev/faker.js/lib/locales/es/address/postcode.js":291}],329:[function(require,module,exports){ module["exports"] = [ "Esc. ###", "Puerta ###", "Edificio #" ]; -},{}],321:[function(require,module,exports){ +},{}],330:[function(require,module,exports){ module["exports"] = [ "Aguascalientes", "Baja California Norte", "Baja California Sur", 'Estado de México', @@ -20321,11 +28320,11 @@ "Veracruz", "Yucatán", "Zacatecas" ]; -},{}],322:[function(require,module,exports){ +},{}],331:[function(require,module,exports){ module["exports"] = [ "AS", "BC", "BS", "CC", @@ -20357,11 +28356,11 @@ "VZ", "YN", "ZS" ]; -},{}],323:[function(require,module,exports){ +},{}],332:[function(require,module,exports){ module["exports"] = [ "20 de Noviembre", "Cinco de Mayo", "Cuahutemoc", "Manzanares", @@ -20399,26 +28398,26 @@ "Naranjo", "Cedro", "Jalisco", "Avena" ]; -},{}],324:[function(require,module,exports){ -module.exports=require(287) -},{"/Users/a/dev/faker.js/lib/locales/es/address/street_address.js":287}],325:[function(require,module,exports){ +},{}],333:[function(require,module,exports){ +module.exports=require(296) +},{"/Users/a/dev/faker.js/lib/locales/es/address/street_address.js":296}],334:[function(require,module,exports){ module["exports"] = [ "#{street_suffix} #{Name.first_name}", "#{street_suffix} #{Name.first_name} #{Name.last_name}", "#{street_suffix} #{street}", "#{street_suffix} #{street}", "#{street_suffix} #{street}", "#{street_suffix} #{street}" ]; -},{}],326:[function(require,module,exports){ -module.exports=require(289) -},{"/Users/a/dev/faker.js/lib/locales/es/address/street_suffix.js":289}],327:[function(require,module,exports){ +},{}],335:[function(require,module,exports){ +module.exports=require(298) +},{"/Users/a/dev/faker.js/lib/locales/es/address/street_suffix.js":298}],336:[function(require,module,exports){ module["exports"] = [ "Pacífico/Midway", "Pacífico/Pago_Pago", "Pacífico/Honolulu", "America/Juneau", @@ -20560,327 +28559,330 @@ "Pacífico/Tongatapu", "Pacífico/Fakaofo", "Pacífico/Apia" ]; -},{}],328:[function(require,module,exports){ +},{}],337:[function(require,module,exports){ module["exports"] = [ "5##-###-###", "5##.###.###", "5## ### ###", "5########" ]; -},{}],329:[function(require,module,exports){ +},{}],338:[function(require,module,exports){ arguments[4][29][0].apply(exports,arguments) -},{"./formats":328,"/Users/a/dev/faker.js/lib/locales/de/cell_phone/index.js":29}],330:[function(require,module,exports){ +},{"./formats":337,"/Users/a/dev/faker.js/lib/locales/de/cell_phone/index.js":29}],339:[function(require,module,exports){ module["exports"] = [ "rojo", -   "verde", -   "azul", -   "amarillo", -   "morado", -   "Menta verde", -   "teal", -   "blanco", -   "negro", -   "Naranja", -   "Rosa", -   "gris", -   "marrón", -   "violeta", -   "turquesa", -   "tan", -   "cielo azul", -   "salmón", -   "ciruela", -   "orquídea", -   "aceituna", -   "magenta", -   "Lima", -   "marfil", -   "índigo", -   "oro", -   "fucsia", -   "cian", -   "azul", -   "lavanda", -   "plata" + "verde", + "azul", + "amarillo", + "morado", + "Menta verde", + "teal", + "blanco", + "negro", + "Naranja", + "Rosa", + "gris", + "marrón", + "violeta", + "turquesa", + "tan", + "cielo azul", + "salmón", + "ciruela", + "orquídea", + "aceituna", + "magenta", + "Lima", + "marfil", + "índigo", + "oro", + "fucsia", + "cian", + "azul", + "lavanda", + "plata" ]; -},{}],331:[function(require,module,exports){ +},{}],340:[function(require,module,exports){ module["exports"] = [ "Libros", -   "Películas", -   "Música", -   "Juegos", -   "Electrónica", -   "Ordenadores", -   "Hogar", -   "Jardín", -   "Herramientas", -   "Ultramarinos", -   "Salud", -   "Belleza", -   "Juguetes", -   "Kids", -   "Baby", -   "Ropa", -   "Zapatos", -   "Joyería", -   "Deportes", -   "Aire libre", -   "Automoción", -   "Industrial" + "Películas", + "Música", + "Juegos", + "Electrónica", + "Ordenadores", + "Hogar", + "Jardín", + "Herramientas", + "Ultramarinos", + "Salud", + "Belleza", + "Juguetes", + "Kids", + "Baby", + "Ropa", + "Zapatos", + "Joyería", + "Deportes", + "Aire libre", + "Automoción", + "Industrial" ]; -},{}],332:[function(require,module,exports){ -arguments[4][121][0].apply(exports,arguments) -},{"./color":330,"./department":331,"./product_name":333,"/Users/a/dev/faker.js/lib/locales/en/commerce/index.js":121}],333:[function(require,module,exports){ +},{}],341:[function(require,module,exports){ +arguments[4][126][0].apply(exports,arguments) +},{"./color":339,"./department":340,"./product_name":342,"/Users/a/dev/faker.js/lib/locales/en/commerce/index.js":126}],342:[function(require,module,exports){ module["exports"] = { "adjective": [ -     "Pequeño", -     "Ergonómico", -     "Rústico", -     "Inteligente", -     "Gorgeous", -     "Increíble", -     "Fantástico", -     "Práctica", -     "Elegante", -     "Increíble", -     "Genérica", -     "Artesanal", -     "Hecho a mano", -     "Licencia", -     "Refinado", -     "Sin marca", -     "Sabrosa" -   ], + "Pequeño", + "Ergonómico", + "Rústico", + "Inteligente", + "Gorgeous", + "Increíble", + "Fantástico", + "Práctica", + "Elegante", + "Increíble", + "Genérica", + "Artesanal", + "Hecho a mano", + "Licencia", + "Refinado", + "Sin marca", + "Sabrosa" + ], "material": [ -     "Acero", -     "Madera", -     "Hormigón", -     "Plástico", -     "Cotton", -     "Granito", -     "Caucho", -     "Metal", -     "Soft", -     "Fresco", -     "Frozen" -   ], + "Acero", + "Madera", + "Hormigón", + "Plástico", + "Cotton", + "Granito", + "Caucho", + "Metal", + "Soft", + "Fresco", + "Frozen" + ], "product": [ -     "Presidente", -     "Auto", -     "Computadora", -     "Teclado", -     "Ratón", -     "Bike", -     "Pelota", -     "Guantes", -     "Pantalones", -     "Camisa", -     "Mesa", -     "Zapatos", -     "Sombrero", -     "Toallas", -     "Jabón", -     "Tuna", -     "Pollo", -     "Pescado", -     "Queso", -     "Tocino", -     "Pizza", -     "Ensalada", -     "Embutidos" + "Presidente", + "Auto", + "Computadora", + "Teclado", + "Ratón", + "Bike", + "Pelota", + "Guantes", + "Pantalones", + "Camisa", + "Mesa", + "Zapatos", + "Sombrero", + "Toallas", + "Jabón", + "Tuna", + "Pollo", + "Pescado", + "Queso", + "Tocino", + "Pizza", + "Ensalada", + "Embutidos" ] }; -},{}],334:[function(require,module,exports){ -module.exports=require(293) -},{"/Users/a/dev/faker.js/lib/locales/es/company/adjective.js":293}],335:[function(require,module,exports){ +},{}],343:[function(require,module,exports){ +module.exports=require(302) +},{"/Users/a/dev/faker.js/lib/locales/es/company/adjective.js":302}],344:[function(require,module,exports){ module["exports"] = [ "Clics y mortero", -  "Valor añadido", -  "Vertical", -  "Proactivo", -  "Robusto", -  "Revolucionario", -  "Escalable", -  "De vanguardia", -  "Innovador", -  "Intuitivo", -  "Estratégico", -  "E-business", -  "Misión crítica", -  "Pegajosa", -  "Doce y cincuenta y nueve de la noche", -  "24/7", -  "De extremo a extremo", -  "Global", -  "B2B", -  "B2C", -  "Granular", -  "Fricción", -  "Virtual", -  "Viral", -  "Dinámico", -  "24/365", -  "Mejor de su clase", -  "Asesino", -  "Magnética", -  "Filo sangriento", -  "Habilitado web", -  "Interactiva", -  "Punto com", -  "Sexy", -  "Back-end", -  "Tiempo real", -  "Eficiente", -  "Frontal", -  "Distribuida", -  "Sin costura", -  "Extensible", -  "Llave en mano", -  "Clase mundial", -  "Código abierto", -  "Multiplataforma", -  "Cross-media", -  "Sinérgico", -  "ladrillos y clics", -  "Fuera de la caja", -  "Empresa", -  "Integrado", -  "Impactante", -  "Inalámbrico", -  "Transparente", -  "Próxima generación", -  "Innovador", -  "User-centric", -  "Visionario", -  "A medida", -  "Ubicua", -  "Enchufa y juega", -  "Colaboración", -  "Convincente", -  "Holístico", -  "Ricos" + "Valor añadido", + "Vertical", + "Proactivo", + "Robusto", + "Revolucionario", + "Escalable", + "De vanguardia", + "Innovador", + "Intuitivo", + "Estratégico", + "E-business", + "Misión crítica", + "Pegajosa", + "Doce y cincuenta y nueve de la noche", + "24/7", + "De extremo a extremo", + "Global", + "B2B", + "B2C", + "Granular", + "Fricción", + "Virtual", + "Viral", + "Dinámico", + "24/365", + "Mejor de su clase", + "Asesino", + "Magnética", + "Filo sangriento", + "Habilitado web", + "Interactiva", + "Punto com", + "Sexy", + "Back-end", + "Tiempo real", + "Eficiente", + "Frontal", + "Distribuida", + "Sin costura", + "Extensible", + "Llave en mano", + "Clase mundial", + "Código abierto", + "Multiplataforma", + "Cross-media", + "Sinérgico", + "ladrillos y clics", + "Fuera de la caja", + "Empresa", + "Integrado", + "Impactante", + "Inalámbrico", + "Transparente", + "Próxima generación", + "Innovador", + "User-centric", + "Visionario", + "A medida", + "Ubicua", + "Enchufa y juega", + "Colaboración", + "Convincente", + "Holístico", + "Ricos" ]; -},{}],336:[function(require,module,exports){ + +},{}],345:[function(require,module,exports){ module["exports"] = [ "sinergias", -   "web-readiness", -   "paradigmas", -   "mercados", -   "asociaciones", -   "infraestructuras", -   "plataformas", -   "iniciativas", -   "canales", -   "ojos", -   "comunidades", -   "ROI", -   "soluciones", -   "minoristas electrónicos", -   "e-servicios", -   "elementos de acción", -   "portales", -   "nichos", -   "tecnologías", -   "contenido", -   "vortales", -   "cadenas de suministro", -   "convergencia", -   "relaciones", -   "arquitecturas", -   "interfaces", -   "mercados electrónicos", -   "e-commerce", -   "sistemas", -   "ancho de banda", -   "infomediarios", -   "modelos", -   "Mindshare", -   "entregables", -   "usuarios", -   "esquemas", -   "redes", -   "aplicaciones", -   "métricas", -   "e-business", -   "funcionalidades", -   "experiencias", -   "servicios web", -   "metodologías" + "web-readiness", + "paradigmas", + "mercados", + "asociaciones", + "infraestructuras", + "plataformas", + "iniciativas", + "canales", + "ojos", + "comunidades", + "ROI", + "soluciones", + "minoristas electrónicos", + "e-servicios", + "elementos de acción", + "portales", + "nichos", + "tecnologías", + "contenido", + "vortales", + "cadenas de suministro", + "convergencia", + "relaciones", + "arquitecturas", + "interfaces", + "mercados electrónicos", + "e-commerce", + "sistemas", + "ancho de banda", + "infomediarios", + "modelos", + "Mindshare", + "entregables", + "usuarios", + "esquemas", + "redes", + "aplicaciones", + "métricas", + "e-business", + "funcionalidades", + "experiencias", + "servicios web", + "metodologías" ]; -},{}],337:[function(require,module,exports){ + +},{}],346:[function(require,module,exports){ module["exports"] = [ "poner en práctica", -   "utilizar", -   "integrar", -   "racionalizar", -   "optimizar", -   "evolucionar", -   "transformar", -   "abrazar", -   "habilitar", -   "orquestar", -   "apalancamiento", -   "reinventar", -   "agregado", -   "arquitecto", -   "mejorar", -   "incentivar", -   "transformarse", -   "empoderar", -   "Envisioneer", -   "monetizar", -   "arnés", -   "facilitar", -   "aprovechar", -   "desintermediar", -   "sinergia", -   "estrategias", -   "desplegar", -   "marca", -   "crecer", -   "objetivo", -   "sindicato", -   "sintetizar", -   "entregue", -   "malla", -   "incubar", -   "enganchar", -   "maximizar", -   "punto de referencia", -   "acelerar", -   "reintermediate", -   "pizarra", -   "visualizar", -   "reutilizar", -   "innovar", -   "escala", -   "desatar", -   "conducir", -   "extender", -   "ingeniero", -   "revolucionar", -   "generar", -   "explotar", -   "transición", -   "e-enable", -   "repetir", -   "cultivar", -   "matriz", -   "productize", -   "redefinir", -   "recontextualizar" + "utilizar", + "integrar", + "racionalizar", + "optimizar", + "evolucionar", + "transformar", + "abrazar", + "habilitar", + "orquestar", + "apalancamiento", + "reinventar", + "agregado", + "arquitecto", + "mejorar", + "incentivar", + "transformarse", + "empoderar", + "Envisioneer", + "monetizar", + "arnés", + "facilitar", + "aprovechar", + "desintermediar", + "sinergia", + "estrategias", + "desplegar", + "marca", + "crecer", + "objetivo", + "sindicato", + "sintetizar", + "entregue", + "malla", + "incubar", + "enganchar", + "maximizar", + "punto de referencia", + "acelerar", + "reintermediate", + "pizarra", + "visualizar", + "reutilizar", + "innovar", + "escala", + "desatar", + "conducir", + "extender", + "ingeniero", + "revolucionar", + "generar", + "explotar", + "transición", + "e-enable", + "repetir", + "cultivar", + "matriz", + "productize", + "redefinir", + "recontextualizar" ] -},{}],338:[function(require,module,exports){ -module.exports=require(294) -},{"/Users/a/dev/faker.js/lib/locales/es/company/descriptor.js":294}],339:[function(require,module,exports){ + +},{}],347:[function(require,module,exports){ +module.exports=require(303) +},{"/Users/a/dev/faker.js/lib/locales/es/company/descriptor.js":303}],348:[function(require,module,exports){ var company = {}; module['exports'] = company; company.suffix = require("./suffix"); company.adjective = require("./adjective"); company.descriptor = require("./descriptor"); @@ -20888,17 +28890,17 @@ company.bs_verb = require("./bs_verb"); company.name = require("./name"); company.bs_adjective = require("./bs_adjective"); company.bs_noun = require("./bs_noun"); -},{"./adjective":334,"./bs_adjective":335,"./bs_noun":336,"./bs_verb":337,"./descriptor":338,"./name":340,"./noun":341,"./suffix":342}],340:[function(require,module,exports){ -module.exports=require(296) -},{"/Users/a/dev/faker.js/lib/locales/es/company/name.js":296}],341:[function(require,module,exports){ -module.exports=require(297) -},{"/Users/a/dev/faker.js/lib/locales/es/company/noun.js":297}],342:[function(require,module,exports){ -module.exports=require(298) -},{"/Users/a/dev/faker.js/lib/locales/es/company/suffix.js":298}],343:[function(require,module,exports){ +},{"./adjective":343,"./bs_adjective":344,"./bs_noun":345,"./bs_verb":346,"./descriptor":347,"./name":349,"./noun":350,"./suffix":351}],349:[function(require,module,exports){ +module.exports=require(305) +},{"/Users/a/dev/faker.js/lib/locales/es/company/name.js":305}],350:[function(require,module,exports){ +module.exports=require(306) +},{"/Users/a/dev/faker.js/lib/locales/es/company/noun.js":306}],351:[function(require,module,exports){ +module.exports=require(307) +},{"/Users/a/dev/faker.js/lib/locales/es/company/suffix.js":307}],352:[function(require,module,exports){ var es_MX = {}; module['exports'] = es_MX; es_MX.title = "Spanish Mexico"; es_MX.separator = " & "; es_MX.name = require("./name"); @@ -20908,36 +28910,36 @@ es_MX.phone_number = require("./phone_number"); es_MX.cell_phone = require("./cell_phone"); es_MX.lorem = require("./lorem"); es_MX.commerce = require("./commerce"); es_MX.team = require("./team"); -},{"./address":318,"./cell_phone":329,"./commerce":332,"./company":339,"./internet":346,"./lorem":347,"./name":351,"./phone_number":358,"./team":360}],344:[function(require,module,exports){ +},{"./address":327,"./cell_phone":338,"./commerce":341,"./company":348,"./internet":355,"./lorem":356,"./name":360,"./phone_number":367,"./team":369}],353:[function(require,module,exports){ module["exports"] = [ "com", "mx", "info", "com.mx", "org", "gob.mx" ]; -},{}],345:[function(require,module,exports){ +},{}],354:[function(require,module,exports){ module["exports"] = [ "gmail.com", "yahoo.com", "hotmail.com", "nearbpo.com", "corpfolder.com" ]; -},{}],346:[function(require,module,exports){ +},{}],355:[function(require,module,exports){ arguments[4][37][0].apply(exports,arguments) -},{"./domain_suffix":344,"./free_email":345,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],347:[function(require,module,exports){ -arguments[4][161][0].apply(exports,arguments) -},{"./supplemental":348,"./words":349,"/Users/a/dev/faker.js/lib/locales/en/lorem/index.js":161}],348:[function(require,module,exports){ -module.exports=require(162) -},{"/Users/a/dev/faker.js/lib/locales/en/lorem/supplemental.js":162}],349:[function(require,module,exports){ +},{"./domain_suffix":353,"./free_email":354,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],356:[function(require,module,exports){ +arguments[4][167][0].apply(exports,arguments) +},{"./supplemental":357,"./words":358,"/Users/a/dev/faker.js/lib/locales/en/lorem/index.js":167}],357:[function(require,module,exports){ +module.exports=require(168) +},{"/Users/a/dev/faker.js/lib/locales/en/lorem/supplemental.js":168}],358:[function(require,module,exports){ module["exports"] = [ "Abacalero", "Abacería", "Abacero", "Abacial", @@ -21205,11 +29207,11 @@ "Incruentamente", "Incruento", "Incrustación" ]; -},{}],350:[function(require,module,exports){ +},{}],359:[function(require,module,exports){ module["exports"] = [ "Aarón", "Abraham", "Adán", "Agustín", @@ -21512,13 +29514,13 @@ "Ximena Guadalupe", "Yamileth", "Yaretzi", "Zoe" ] -},{}],351:[function(require,module,exports){ -arguments[4][165][0].apply(exports,arguments) -},{"./first_name":350,"./last_name":352,"./name":353,"./prefix":354,"./suffix":355,"./title":356,"/Users/a/dev/faker.js/lib/locales/en/name/index.js":165}],352:[function(require,module,exports){ +},{}],360:[function(require,module,exports){ +arguments[4][171][0].apply(exports,arguments) +},{"./first_name":359,"./last_name":361,"./name":362,"./prefix":363,"./suffix":364,"./title":365,"/Users/a/dev/faker.js/lib/locales/en/name/index.js":171}],361:[function(require,module,exports){ module["exports"] = [ "Abeyta", "Abrego", "Abreu", "Acevedo", @@ -22205,22 +30207,22 @@ "Zelaya", "Zepeda", "Zúñiga" ]; -},{}],353:[function(require,module,exports){ +},{}],362:[function(require,module,exports){ module["exports"] = [ "#{prefix} #{first_name} #{last_name} #{last_name}", "#{first_name} #{last_name} de #{last_name}", "#{suffix} #{first_name} #{last_name} #{last_name}", "#{first_name} #{last_name} #{last_name}", "#{first_name} #{last_name} #{last_name}" ]; -},{}],354:[function(require,module,exports){ -module.exports=require(307) -},{"/Users/a/dev/faker.js/lib/locales/es/name/prefix.js":307}],355:[function(require,module,exports){ +},{}],363:[function(require,module,exports){ +module.exports=require(316) +},{"/Users/a/dev/faker.js/lib/locales/es/name/prefix.js":316}],364:[function(require,module,exports){ module["exports"] = [ "Jr.", "Sr.", "I", "II", @@ -22235,11 +30237,11 @@ "Lic.", "Dr.", "Mtro." ]; -},{}],356:[function(require,module,exports){ +},{}],365:[function(require,module,exports){ module["exports"] = { "descriptor": [ "Jefe", "Senior", "Directo", @@ -22332,102 +30334,102 @@ "Product Owner", "Scrum Developer" ] }; -},{}],357:[function(require,module,exports){ +},{}],366:[function(require,module,exports){ module["exports"] = [ "5###-###-###", "5##.###.###", "5## ### ###", "5########" ]; -},{}],358:[function(require,module,exports){ +},{}],367:[function(require,module,exports){ arguments[4][47][0].apply(exports,arguments) -},{"./formats":357,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],359:[function(require,module,exports){ +},{"./formats":366,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],368:[function(require,module,exports){ module["exports"] = [ "hormigas", -   "murciélagos", -   "osos", -   "abejas", -   "pájaros", -   "búfalo", -   "gatos", -   "pollos", -   "ganado", -   "perros", -   "delfines", -   "patos", -   "elefantes", -   "peces", -   "zorros", -   "ranas", -   "gansos", -   "cabras", -   "caballos", -   "canguros", -   "leones", -   "monos", -   "búhos", -   "bueyes", -   "pingüinos", -   "pueblo", -   "cerdos", -   "conejos", -   "ovejas", -   "tigres", -   "ballenas", -   "lobos", -   "cebras", -   "almas en pena", -   "cuervos", -   "gatos negros", -   "quimeras", -   "fantasmas", -   "conspiradores", -   "dragones", -   "enanos", -   "duendes", -   "encantadores", -   "exorcistas", -   "hijos", -   "enemigos", -   "gigantes", -   "gnomos", -   "duendes", -   "gansos", -   "grifos", -   "licántropos", -   "némesis", -   "ogros", -   "oráculos", -   "profetas", -   "hechiceros", -   "arañas", -   "espíritus", -   "vampiros", -   "brujos", -   "zorras", -   "hombres lobo", -   "brujas", -   "adoradores", -   "zombies", -   "druidas" + "murciélagos", + "osos", + "abejas", + "pájaros", + "búfalo", + "gatos", + "pollos", + "ganado", + "perros", + "delfines", + "patos", + "elefantes", + "peces", + "zorros", + "ranas", + "gansos", + "cabras", + "caballos", + "canguros", + "leones", + "monos", + "búhos", + "bueyes", + "pingüinos", + "pueblo", + "cerdos", + "conejos", + "ovejas", + "tigres", + "ballenas", + "lobos", + "cebras", + "almas en pena", + "cuervos", + "gatos negros", + "quimeras", + "fantasmas", + "conspiradores", + "dragones", + "enanos", + "duendes", + "encantadores", + "exorcistas", + "hijos", + "enemigos", + "gigantes", + "gnomos", + "duendes", + "gansos", + "grifos", + "licántropos", + "némesis", + "ogros", + "oráculos", + "profetas", + "hechiceros", + "arañas", + "espíritus", + "vampiros", + "brujos", + "zorras", + "hombres lobo", + "brujas", + "adoradores", + "zombies", + "druidas" ]; -},{}],360:[function(require,module,exports){ -arguments[4][174][0].apply(exports,arguments) -},{"./creature":359,"./name":361,"/Users/a/dev/faker.js/lib/locales/en/team/index.js":174}],361:[function(require,module,exports){ -module.exports=require(175) -},{"/Users/a/dev/faker.js/lib/locales/en/team/name.js":175}],362:[function(require,module,exports){ +},{}],369:[function(require,module,exports){ +arguments[4][182][0].apply(exports,arguments) +},{"./creature":368,"./name":370,"/Users/a/dev/faker.js/lib/locales/en/team/index.js":182}],370:[function(require,module,exports){ +module.exports=require(183) +},{"/Users/a/dev/faker.js/lib/locales/en/team/name.js":183}],371:[function(require,module,exports){ var fa = {}; module['exports'] = fa; fa.title = "Farsi"; fa.name = require("./name"); -},{"./name":364}],363:[function(require,module,exports){ +},{"./name":373}],372:[function(require,module,exports){ module["exports"] = [ "آبان دخت", "آبتین", "آتوسا", "آفر", @@ -23149,18 +31151,18 @@ "یزدان", "یگانه", "یوشیتا" ]; -},{}],364:[function(require,module,exports){ +},{}],373:[function(require,module,exports){ var name = {}; module['exports'] = name; name.first_name = require("./first_name"); name.last_name = require("./last_name"); name.prefix = require("./prefix"); -},{"./first_name":363,"./last_name":365,"./prefix":366}],365:[function(require,module,exports){ +},{"./first_name":372,"./last_name":374,"./prefix":375}],374:[function(require,module,exports){ module["exports"] = [ "عارف", "عاشوری", "عالی", "عبادی", @@ -23304,28 +31306,28 @@ "یادگار", "یثربی", "یلدا" ]; -},{}],366:[function(require,module,exports){ +},{}],375:[function(require,module,exports){ module["exports"] = [ "آقای", "خانم", "دکتر" ]; -},{}],367:[function(require,module,exports){ +},{}],376:[function(require,module,exports){ module["exports"] = [ "####", "###", "##", "#" ]; -},{}],368:[function(require,module,exports){ +},{}],377:[function(require,module,exports){ module.exports=require(49) -},{"/Users/a/dev/faker.js/lib/locales/de_AT/address/city.js":49}],369:[function(require,module,exports){ +},{"/Users/a/dev/faker.js/lib/locales/de_AT/address/city.js":49}],378:[function(require,module,exports){ module["exports"] = [ "Paris", "Marseille", "Lyon", "Toulouse", @@ -23425,16 +31427,16 @@ "Hyères", "Beauvais", "Cholet" ]; -},{}],370:[function(require,module,exports){ +},{}],379:[function(require,module,exports){ module["exports"] = [ "France" ]; -},{}],371:[function(require,module,exports){ +},{}],380:[function(require,module,exports){ var address = {}; module['exports'] = address; address.building_number = require("./building_number"); address.street_prefix = require("./street_prefix"); address.secondary_address = require("./secondary_address"); @@ -23445,19 +31447,19 @@ address.street_suffix = require("./street_suffix"); address.street_name = require("./street_name"); address.street_address = require("./street_address"); address.default_country = require("./default_country"); -},{"./building_number":367,"./city":368,"./city_name":369,"./default_country":370,"./postcode":372,"./secondary_address":373,"./state":374,"./street_address":375,"./street_name":376,"./street_prefix":377,"./street_suffix":378}],372:[function(require,module,exports){ -module.exports=require(282) -},{"/Users/a/dev/faker.js/lib/locales/es/address/postcode.js":282}],373:[function(require,module,exports){ +},{"./building_number":376,"./city":377,"./city_name":378,"./default_country":379,"./postcode":381,"./secondary_address":382,"./state":383,"./street_address":384,"./street_name":385,"./street_prefix":386,"./street_suffix":387}],381:[function(require,module,exports){ +module.exports=require(291) +},{"/Users/a/dev/faker.js/lib/locales/es/address/postcode.js":291}],382:[function(require,module,exports){ module["exports"] = [ "Apt. ###", "# étage" ]; -},{}],374:[function(require,module,exports){ +},{}],383:[function(require,module,exports){ module["exports"] = [ "Alsace", "Aquitaine", "Auvergne", "Basse-Normandie", @@ -23479,18 +31481,18 @@ "Poitou-Charentes", "Provence-Alpes-Côte d'Azur", "Rhône-Alpes" ]; -},{}],375:[function(require,module,exports){ -module.exports=require(105) -},{"/Users/a/dev/faker.js/lib/locales/en/address/street_address.js":105}],376:[function(require,module,exports){ +},{}],384:[function(require,module,exports){ +module.exports=require(110) +},{"/Users/a/dev/faker.js/lib/locales/en/address/street_address.js":110}],385:[function(require,module,exports){ module["exports"] = [ "#{street_prefix} #{street_suffix}" ]; -},{}],377:[function(require,module,exports){ +},{}],386:[function(require,module,exports){ module["exports"] = [ "Allée, Voie", "Rue", "Avenue", "Boulevard", @@ -23498,11 +31500,11 @@ "Passage", "Impasse", "Place" ]; -},{}],378:[function(require,module,exports){ +},{}],387:[function(require,module,exports){ module["exports"] = [ "de l'Abbaye", "Adolphe Mille", "d'Alésia", "d'Argenteuil", @@ -23568,31 +31570,31 @@ "de Vaugirard", "de la Victoire", "Zadkine" ]; -},{}],379:[function(require,module,exports){ -module.exports=require(123) -},{"/Users/a/dev/faker.js/lib/locales/en/company/adjective.js":123}],380:[function(require,module,exports){ -module.exports=require(124) -},{"/Users/a/dev/faker.js/lib/locales/en/company/bs_adjective.js":124}],381:[function(require,module,exports){ -module.exports=require(125) -},{"/Users/a/dev/faker.js/lib/locales/en/company/bs_noun.js":125}],382:[function(require,module,exports){ -module.exports=require(126) -},{"/Users/a/dev/faker.js/lib/locales/en/company/bs_verb.js":126}],383:[function(require,module,exports){ -module.exports=require(127) -},{"/Users/a/dev/faker.js/lib/locales/en/company/descriptor.js":127}],384:[function(require,module,exports){ -arguments[4][128][0].apply(exports,arguments) -},{"./adjective":379,"./bs_adjective":380,"./bs_noun":381,"./bs_verb":382,"./descriptor":383,"./name":385,"./noun":386,"./suffix":387,"/Users/a/dev/faker.js/lib/locales/en/company/index.js":128}],385:[function(require,module,exports){ +},{}],388:[function(require,module,exports){ +module.exports=require(128) +},{"/Users/a/dev/faker.js/lib/locales/en/company/adjective.js":128}],389:[function(require,module,exports){ +module.exports=require(129) +},{"/Users/a/dev/faker.js/lib/locales/en/company/bs_adjective.js":129}],390:[function(require,module,exports){ +module.exports=require(130) +},{"/Users/a/dev/faker.js/lib/locales/en/company/bs_noun.js":130}],391:[function(require,module,exports){ +module.exports=require(131) +},{"/Users/a/dev/faker.js/lib/locales/en/company/bs_verb.js":131}],392:[function(require,module,exports){ +module.exports=require(132) +},{"/Users/a/dev/faker.js/lib/locales/en/company/descriptor.js":132}],393:[function(require,module,exports){ +arguments[4][133][0].apply(exports,arguments) +},{"./adjective":388,"./bs_adjective":389,"./bs_noun":390,"./bs_verb":391,"./descriptor":392,"./name":394,"./noun":395,"./suffix":396,"/Users/a/dev/faker.js/lib/locales/en/company/index.js":133}],394:[function(require,module,exports){ module["exports"] = [ "#{Name.last_name} #{suffix}", "#{Name.last_name} et #{Name.last_name}" ]; -},{}],386:[function(require,module,exports){ -module.exports=require(130) -},{"/Users/a/dev/faker.js/lib/locales/en/company/noun.js":130}],387:[function(require,module,exports){ +},{}],395:[function(require,module,exports){ +module.exports=require(135) +},{"/Users/a/dev/faker.js/lib/locales/en/company/noun.js":135}],396:[function(require,module,exports){ module["exports"] = [ "SARL", "SA", "EURL", "SAS", @@ -23600,48 +31602,48 @@ "SCOP", "GIE", "EI" ]; -},{}],388:[function(require,module,exports){ +},{}],397:[function(require,module,exports){ var fr = {}; module['exports'] = fr; fr.title = "French"; fr.address = require("./address"); fr.company = require("./company"); fr.internet = require("./internet"); fr.lorem = require("./lorem"); fr.name = require("./name"); fr.phone_number = require("./phone_number"); -},{"./address":371,"./company":384,"./internet":391,"./lorem":392,"./name":396,"./phone_number":402}],389:[function(require,module,exports){ +},{"./address":380,"./company":393,"./internet":400,"./lorem":401,"./name":405,"./phone_number":411}],398:[function(require,module,exports){ module["exports"] = [ "com", "fr", "eu", "info", "name", "net", "org" ]; -},{}],390:[function(require,module,exports){ +},{}],399:[function(require,module,exports){ module["exports"] = [ "gmail.com", "yahoo.fr", "hotmail.fr" ]; -},{}],391:[function(require,module,exports){ +},{}],400:[function(require,module,exports){ arguments[4][37][0].apply(exports,arguments) -},{"./domain_suffix":389,"./free_email":390,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],392:[function(require,module,exports){ -module.exports=require(161) -},{"./supplemental":393,"./words":394,"/Users/a/dev/faker.js/lib/locales/en/lorem/index.js":161}],393:[function(require,module,exports){ -module.exports=require(162) -},{"/Users/a/dev/faker.js/lib/locales/en/lorem/supplemental.js":162}],394:[function(require,module,exports){ +},{"./domain_suffix":398,"./free_email":399,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],401:[function(require,module,exports){ +module.exports=require(167) +},{"./supplemental":402,"./words":403,"/Users/a/dev/faker.js/lib/locales/en/lorem/index.js":167}],402:[function(require,module,exports){ +module.exports=require(168) +},{"/Users/a/dev/faker.js/lib/locales/en/lorem/supplemental.js":168}],403:[function(require,module,exports){ module.exports=require(39) -},{"/Users/a/dev/faker.js/lib/locales/de/lorem/words.js":39}],395:[function(require,module,exports){ +},{"/Users/a/dev/faker.js/lib/locales/de/lorem/words.js":39}],404:[function(require,module,exports){ module["exports"] = [ "Enzo", "Lucas", "Mathis", "Nathan", @@ -23730,20 +31732,20 @@ "Maëlle", "Alicia", "Mélissa" ]; -},{}],396:[function(require,module,exports){ +},{}],405:[function(require,module,exports){ var name = {}; module['exports'] = name; name.first_name = require("./first_name"); name.last_name = require("./last_name"); name.prefix = require("./prefix"); name.title = require("./title"); name.name = require("./name"); -},{"./first_name":395,"./last_name":397,"./name":398,"./prefix":399,"./title":400}],397:[function(require,module,exports){ +},{"./first_name":404,"./last_name":406,"./name":407,"./prefix":408,"./title":409}],406:[function(require,module,exports){ module["exports"] = [ "Martin", "Bernard", "Dubois", "Thomas", @@ -23893,27 +31895,27 @@ "Barre", "Marty", "Cousin" ]; -},{}],398:[function(require,module,exports){ +},{}],407:[function(require,module,exports){ module["exports"] = [ "#{prefix} #{first_name} #{last_name}", "#{first_name} #{last_name}", "#{last_name} #{first_name}" ]; -},{}],399:[function(require,module,exports){ +},{}],408:[function(require,module,exports){ module["exports"] = [ "M", "Mme", "Mlle", "Dr", "Prof" ]; -},{}],400:[function(require,module,exports){ +},{}],409:[function(require,module,exports){ module["exports"] = { "job": [ "Superviseur", "Executif", "Manager", @@ -23933,11 +31935,11 @@ "Agent", "Stagiaire" ] }; -},{}],401:[function(require,module,exports){ +},{}],410:[function(require,module,exports){ module["exports"] = [ "01########", "02########", "03########", "04########", @@ -23951,19 +31953,19 @@ "+33 5########", "+33 6########", "+33 7########" ]; -},{}],402:[function(require,module,exports){ +},{}],411:[function(require,module,exports){ arguments[4][47][0].apply(exports,arguments) -},{"./formats":401,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],403:[function(require,module,exports){ -module.exports=require(196) -},{"/Users/a/dev/faker.js/lib/locales/en_CA/address/default_country.js":196}],404:[function(require,module,exports){ -arguments[4][229][0].apply(exports,arguments) -},{"./default_country":403,"./postcode":405,"./state":406,"./state_abbr":407,"/Users/a/dev/faker.js/lib/locales/en_IND/address/index.js":229}],405:[function(require,module,exports){ -module.exports=require(198) -},{"/Users/a/dev/faker.js/lib/locales/en_CA/address/postcode.js":198}],406:[function(require,module,exports){ +},{"./formats":410,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],412:[function(require,module,exports){ +module.exports=require(204) +},{"/Users/a/dev/faker.js/lib/locales/en_CA/address/default_country.js":204}],413:[function(require,module,exports){ +arguments[4][238][0].apply(exports,arguments) +},{"./default_country":412,"./postcode":414,"./state":415,"./state_abbr":416,"/Users/a/dev/faker.js/lib/locales/en_IND/address/index.js":238}],414:[function(require,module,exports){ +module.exports=require(206) +},{"/Users/a/dev/faker.js/lib/locales/en_CA/address/postcode.js":206}],415:[function(require,module,exports){ module["exports"] = [ "Alberta", "Colombie-Britannique", "Manitoba", "Nouveau-Brunswick", @@ -23976,11 +31978,11 @@ "Québec", "Saskatchewan", "Yukon" ]; -},{}],407:[function(require,module,exports){ +},{}],416:[function(require,module,exports){ module["exports"] = [ "AB", "BC", "MB", "NB", @@ -23993,19 +31995,19 @@ "QC", "SK", "YK" ]; -},{}],408:[function(require,module,exports){ +},{}],417:[function(require,module,exports){ var fr_CA = {}; module['exports'] = fr_CA; fr_CA.title = "Canada (French)"; fr_CA.address = require("./address"); fr_CA.internet = require("./internet"); fr_CA.phone_number = require("./phone_number"); -},{"./address":404,"./internet":411,"./phone_number":413}],409:[function(require,module,exports){ +},{"./address":413,"./internet":420,"./phone_number":422}],418:[function(require,module,exports){ module["exports"] = [ "qc.ca", "ca", "com", "biz", @@ -24013,41 +32015,41 @@ "name", "net", "org" ]; -},{}],410:[function(require,module,exports){ -module.exports=require(203) -},{"/Users/a/dev/faker.js/lib/locales/en_CA/internet/free_email.js":203}],411:[function(require,module,exports){ +},{}],419:[function(require,module,exports){ +module.exports=require(211) +},{"/Users/a/dev/faker.js/lib/locales/en_CA/internet/free_email.js":211}],420:[function(require,module,exports){ arguments[4][37][0].apply(exports,arguments) -},{"./domain_suffix":409,"./free_email":410,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],412:[function(require,module,exports){ +},{"./domain_suffix":418,"./free_email":419,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],421:[function(require,module,exports){ module["exports"] = [ "### ###-####", "1 ### ###-####", "### ###-####, poste ###" ]; -},{}],413:[function(require,module,exports){ +},{}],422:[function(require,module,exports){ arguments[4][47][0].apply(exports,arguments) -},{"./formats":412,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],414:[function(require,module,exports){ +},{"./formats":421,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],423:[function(require,module,exports){ module["exports"] = [ "###", "##", "#" ]; -},{}],415:[function(require,module,exports){ +},{}],424:[function(require,module,exports){ module["exports"] = [ "#{city_prefix} #{Name.first_name}#{city_suffix}", "#{city_prefix} #{Name.first_name}", "#{Name.first_name}#{city_suffix}", "#{Name.first_name}#{city_suffix}", "#{Name.last_name}#{city_suffix}", "#{Name.last_name}#{city_suffix}" ]; -},{}],416:[function(require,module,exports){ +},{}],425:[function(require,module,exports){ module["exports"] = [ "აბასთუმანი", "აბაშა", "ადიგენი", "ამბროლაური", @@ -24135,27 +32137,27 @@ "ხობი", "ხონი", "ხულო" ]; -},{}],417:[function(require,module,exports){ +},{}],426:[function(require,module,exports){ module["exports"] = [ "ახალი", "ძველი", "ზემო", "ქვემო" ]; -},{}],418:[function(require,module,exports){ +},{}],427:[function(require,module,exports){ module["exports"] = [ "სოფელი", "ძირი", "სკარი", "დაბა" ]; -},{}],419:[function(require,module,exports){ +},{}],428:[function(require,module,exports){ module["exports"] = [ "ავსტრალია", "ავსტრია", "ავღანეთი", "აზავადი", @@ -24468,16 +32470,16 @@ "ჰერდი და მაკდონალდის კუნძულები", "ჰონდურასი", "ჰონკონგი" ]; -},{}],420:[function(require,module,exports){ +},{}],429:[function(require,module,exports){ module["exports"] = [ "საქართველო" ]; -},{}],421:[function(require,module,exports){ +},{}],430:[function(require,module,exports){ var address = {}; module['exports'] = address; address.city_prefix = require("./city_prefix"); address.city_suffix = require("./city_suffix"); address.city = require("./city"); @@ -24490,39 +32492,39 @@ address.street_title = require("./street_title"); address.street_name = require("./street_name"); address.street_address = require("./street_address"); address.default_country = require("./default_country"); -},{"./building_number":414,"./city":415,"./city_name":416,"./city_prefix":417,"./city_suffix":418,"./country":419,"./default_country":420,"./postcode":422,"./secondary_address":423,"./street_address":424,"./street_name":425,"./street_suffix":426,"./street_title":427}],422:[function(require,module,exports){ +},{"./building_number":423,"./city":424,"./city_name":425,"./city_prefix":426,"./city_suffix":427,"./country":428,"./default_country":429,"./postcode":431,"./secondary_address":432,"./street_address":433,"./street_name":434,"./street_suffix":435,"./street_title":436}],431:[function(require,module,exports){ module["exports"] = [ "01##" ]; -},{}],423:[function(require,module,exports){ +},{}],432:[function(require,module,exports){ module["exports"] = [ "კორპ. ##", "შენობა ###" ]; -},{}],424:[function(require,module,exports){ +},{}],433:[function(require,module,exports){ module.exports=require(25) -},{"/Users/a/dev/faker.js/lib/locales/de/address/street_address.js":25}],425:[function(require,module,exports){ +},{"/Users/a/dev/faker.js/lib/locales/de/address/street_address.js":25}],434:[function(require,module,exports){ module["exports"] = [ "#{street_title} #{street_suffix}" ]; -},{}],426:[function(require,module,exports){ +},{}],435:[function(require,module,exports){ module["exports"] = [ "გამზ.", "გამზირი", "ქ.", "ქუჩა", "ჩიხი", "ხეივანი" ]; -},{}],427:[function(require,module,exports){ +},{}],436:[function(require,module,exports){ module["exports"] = [ "აბაშიძის", "აბესაძის", "აბულაძის", "აგლაძის", @@ -24938,11 +32940,11 @@ "ჯაფარიძის", "ჯიბლაძის", "ჯორჯიაშვილის" ]; -},{}],428:[function(require,module,exports){ +},{}],437:[function(require,module,exports){ module["exports"] = [ "(+995 32) 2-##-##-##", "032-2-##-##-##", "032-2-######", "032-2-###-###", @@ -24951,45 +32953,45 @@ "2 ## ## ##", "2######", "2 ### ###" ]; -},{}],429:[function(require,module,exports){ +},{}],438:[function(require,module,exports){ arguments[4][29][0].apply(exports,arguments) -},{"./formats":428,"/Users/a/dev/faker.js/lib/locales/de/cell_phone/index.js":29}],430:[function(require,module,exports){ +},{"./formats":437,"/Users/a/dev/faker.js/lib/locales/de/cell_phone/index.js":29}],439:[function(require,module,exports){ var company = {}; module['exports'] = company; company.prefix = require("./prefix"); company.suffix = require("./suffix"); company.name = require("./name"); -},{"./name":431,"./prefix":432,"./suffix":433}],431:[function(require,module,exports){ +},{"./name":440,"./prefix":441,"./suffix":442}],440:[function(require,module,exports){ module["exports"] = [ "#{prefix} #{Name.first_name}", "#{prefix} #{Name.last_name}", "#{prefix} #{Name.last_name} #{suffix}", "#{prefix} #{Name.first_name} #{suffix}", "#{prefix} #{Name.last_name}-#{Name.last_name}" ]; -},{}],432:[function(require,module,exports){ +},{}],441:[function(require,module,exports){ module["exports"] = [ "შპს", "სს", "ააიპ", "სსიპ" ]; -},{}],433:[function(require,module,exports){ +},{}],442:[function(require,module,exports){ module["exports"] = [ "ჯგუფი", "და კომპანია", "სტუდია", "გრუპი" ]; -},{}],434:[function(require,module,exports){ +},{}],443:[function(require,module,exports){ var ge = {}; module['exports'] = ge; ge.title = "Georgian"; ge.separator = " და "; ge.name = require("./name"); @@ -24997,30 +32999,30 @@ ge.internet = require("./internet"); ge.company = require("./company"); ge.phone_number = require("./phone_number"); ge.cell_phone = require("./cell_phone"); -},{"./address":421,"./cell_phone":429,"./company":430,"./internet":437,"./name":439,"./phone_number":445}],435:[function(require,module,exports){ +},{"./address":430,"./cell_phone":438,"./company":439,"./internet":446,"./name":448,"./phone_number":454}],444:[function(require,module,exports){ module["exports"] = [ "ge", "com", "net", "org", "com.ge", "org.ge" ]; -},{}],436:[function(require,module,exports){ +},{}],445:[function(require,module,exports){ module["exports"] = [ "gmail.com", "yahoo.com", "posta.ge" ]; -},{}],437:[function(require,module,exports){ +},{}],446:[function(require,module,exports){ arguments[4][37][0].apply(exports,arguments) -},{"./domain_suffix":435,"./free_email":436,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],438:[function(require,module,exports){ +},{"./domain_suffix":444,"./free_email":445,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],447:[function(require,module,exports){ module["exports"] = [ "აგული", "აგუნა", "ადოლა", "ავთანდილ", @@ -25519,13 +33521,13 @@ "ჯულიეტა", "ჯუმბერ", "ჰამლეტ" ]; -},{}],439:[function(require,module,exports){ -arguments[4][396][0].apply(exports,arguments) -},{"./first_name":438,"./last_name":440,"./name":441,"./prefix":442,"./title":443,"/Users/a/dev/faker.js/lib/locales/fr/name/index.js":396}],440:[function(require,module,exports){ +},{}],448:[function(require,module,exports){ +arguments[4][405][0].apply(exports,arguments) +},{"./first_name":447,"./last_name":449,"./name":450,"./prefix":451,"./title":452,"/Users/a/dev/faker.js/lib/locales/fr/name/index.js":405}],449:[function(require,module,exports){ module["exports"] = [ "აბაზაძე", "აბაშიძე", "აბრამაშვილი", "აბუსერიძე", @@ -25694,29 +33696,29 @@ "ჯვარელია", "ჯინიუზაშვილი", "ჯუღაშვილი" ]; -},{}],441:[function(require,module,exports){ +},{}],450:[function(require,module,exports){ module["exports"] = [ "#{prefix} #{first_name} #{last_name}", "#{first_name} #{last_name}", "#{first_name} #{last_name}", "#{first_name} #{last_name}", "#{first_name} #{last_name}", "#{first_name} #{last_name}" ]; -},{}],442:[function(require,module,exports){ +},{}],451:[function(require,module,exports){ module["exports"] = [ "ბ-ნი", "ბატონი", "ქ-ნი", "ქალბატონი" ]; -},{}],443:[function(require,module,exports){ +},{}],452:[function(require,module,exports){ module["exports"] = { "descriptor": [ "გენერალური", "მთავარი", "სტაჟიორ", @@ -25790,11 +33792,11 @@ "ფოტოგრაფი", "წარმომადგენელი" ] }; -},{}],444:[function(require,module,exports){ +},{}],453:[function(require,module,exports){ module["exports"] = [ "5##-###-###", "5########", "5## ## ## ##", "5## ######", @@ -25814,32 +33816,1508 @@ "(+995) 5## ## ## ##", "(+995) 5## ######", "(+995) 5## ### ###" ]; -},{}],445:[function(require,module,exports){ +},{}],454:[function(require,module,exports){ arguments[4][47][0].apply(exports,arguments) -},{"./formats":444,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],446:[function(require,module,exports){ -module.exports=require(414) -},{"/Users/a/dev/faker.js/lib/locales/ge/address/building_number.js":414}],447:[function(require,module,exports){ +},{"./formats":453,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],455:[function(require,module,exports){ +module["exports"] = [ + "##", + "#" +]; + +},{}],456:[function(require,module,exports){ +module.exports=require(49) +},{"/Users/a/dev/faker.js/lib/locales/de_AT/address/city.js":49}],457:[function(require,module,exports){ module["exports"] = [ + "Airmadidi", + "Ampana", + "Amurang", + "Andolo", + "Banggai", + "Bantaeng", + "Barru", + "Bau-Bau", + "Benteng", + "Bitung", + "Bolaang Uki", + "Boroko", + "Bulukumba", + "Bungku", + "Buol", + "Buranga", + "Donggala", + "Enrekang", + "Gorontalo", + "Jeneponto", + "Kawangkoan", + "Kendari", + "Kolaka", + "Kotamobagu", + "Kota Raha", + "Kwandang", + "Lasusua", + "Luwuk", + "Majene", + "Makale", + "Makassar", + "Malili", + "Mamasa", + "Mamuju", + "Manado", + "Marisa", + "Maros", + "Masamba", + "Melonguane", + "Ondong Siau", + "Palopo", + "Palu", + "Pangkajene", + "Pare-Pare", + "Parigi", + "Pasangkayu", + "Pinrang", + "Polewali", + "Poso", + "Rantepao", + "Ratahan", + "Rumbia", + "Sengkang", + "Sidenreng", + "Sigi Biromaru", + "Sinjai", + "Sunggu Minasa", + "Suwawa", + "Tahuna", + "Takalar", + "Tilamuta", + "Toli Toli", + "Tomohon", + "Tondano", + "Tutuyan", + "Unaaha", + "Wangi Wangi", + "Wanggudu", + "Watampone", + "Watan Soppeng", + "Ambarawa", + "Anyer", + "Bandung", + "Bangil", + "Banjar (Jawa Barat)", + "Banjarnegara", + "Bangkalan", + "Bantul", + "Banyumas", + "Banyuwangi", + "Batang", + "Batu", + "Bekasi", + "Blitar", + "Blora", + "Bogor", + "Bojonegoro", + "Bondowoso", + "Boyolali", + "Bumiayu", + "Brebes", + "Caruban", + "Cianjur", + "Ciamis", + "Cibinong", + "Cikampek", + "Cikarang", + "Cilacap", + "Cilegon", + "Cirebon", + "Demak", + "Depok", + "Garut", + "Gresik", + "Indramayu", + "Jakarta", + "Jember", + "Jepara", + "Jombang", + "Kajen", + "Karanganyar", + "Kebumen", + "Kediri", + "Kendal", + "Kepanjen", + "Klaten", + "Pelabuhan Ratu", + "Kraksaan", + "Kudus", + "Kuningan", + "Lamongan", + "Lumajang", + "Madiun", + "Magelang", + "Magetan", + "Majalengka", + "Malang", + "Mojokerto", + "Mojosari", + "Mungkid", + "Ngamprah", + "Nganjuk", + "Ngawi", + "Pacitan", + "Pamekasan", + "Pandeglang", + "Pare", + "Pati", + "Pasuruan", + "Pekalongan", + "Pemalang", + "Ponorogo", + "Probolinggo", + "Purbalingga", + "Purwakarta", + "Purwodadi", + "Purwokerto", + "Purworejo", + "Rangkasbitung", + "Rembang", + "Salatiga", + "Sampang", + "Semarang", + "Serang", + "Sidayu", + "Sidoarjo", + "Singaparna", + "Situbondo", + "Slawi", + "Sleman", + "Soreang", + "Sragen", + "Subang", + "Sukabumi", + "Sukoharjo", + "Sumber", + "Sumedang", + "Sumenep", + "Surabaya", + "Surakarta", + "Tasikmalaya", + "Tangerang", + "Tangerang Selatan", + "Tegal", + "Temanggung", + "Tigaraksa", + "Trenggalek", + "Tuban", + "Tulungagung", + "Ungaran", + "Wates", + "Wlingi", + "Wonogiri", + "Wonosari", + "Wonosobo", + "Yogyakarta", + "Atambua", + "Baa", + "Badung", + "Bajawa", + "Bangli", + "Bima", + "Denpasar", + "Dompu", + "Ende", + "Gianyar", + "Kalabahi", + "Karangasem", + "Kefamenanu", + "Klungkung", + "Kupang", + "Labuhan Bajo", + "Larantuka", + "Lewoleba", + "Maumere", + "Mataram", + "Mbay", + "Negara", + "Praya", + "Raba", + "Ruteng", + "Selong", + "Singaraja", + "Soe", + "Sumbawa Besar", + "Tabanan", + "Taliwang", + "Tambolaka", + "Tanjung", + "Waibakul", + "Waikabubak", + "Waingapu", + "Denpasar", + "Negara,Bali", + "Singaraja", + "Tabanan", + "Bangli" +]; +},{}],458:[function(require,module,exports){ +module["exports"] = [ + "Indonesia" +]; + +},{}],459:[function(require,module,exports){ +var address = {}; +module['exports'] = address; +address.building_number = require("./building_number"); +address.postcode = require("./postcode"); +address.state = require("./state"); +address.city_name = require("./city_name"); +address.city = require("./city"); +address.street_prefix = require("./street_prefix"); +address.street_name = require("./street_name"); +address.street_address = require("./street_address"); +address.default_country = require("./default_country"); + +},{"./building_number":455,"./city":456,"./city_name":457,"./default_country":458,"./postcode":460,"./state":461,"./street_address":462,"./street_name":463,"./street_prefix":464}],460:[function(require,module,exports){ +module["exports"] = [ + "#####" +]; +},{}],461:[function(require,module,exports){ +module["exports"] = [ + "Aceh", + "Sumatera Utara", + "Sumatera Barat", + "Jambi", + "Bangka Belitung", + "Riau", + "Kepulauan Riau", + "Bengkulu", + "Sumatera Selatan", + "Lampung", + "Banten", + "DKI Jakarta", + "Jawa Barat", + "Jawa Tengah", + "Jawa Timur", + "Nusa Tenggara Timur", + "DI Yogyakarta", + "Bali", + "Nusa Tenggara Barat", + "Kalimantan Barat", + "Kalimantan Tengah", + "Kalimantan Selatan", + "Kalimantan Timur", + "Kalimantan Utara", + "Sulawesi Selatan", + "Sulawesi Utara", + "Gorontalo", + "Sulawesi Tengah", + "Sulawesi Barat", + "Sulawesi Tenggara", + "Maluku", + "Maluku Utara", + "Papua Barat", + "Papua" +]; +},{}],462:[function(require,module,exports){ +module["exports"] = [ + "#{street_name} no #{building_number}" +]; +},{}],463:[function(require,module,exports){ +module["exports"] = [ + "#{street_prefix} #{Name.first_name}", + "#{street_prefix} #{Name.last_name}" +]; +},{}],464:[function(require,module,exports){ +module["exports"] = [ + "Ds.", + "Dk.", + "Gg.", + "Jln.", + "Jr.", + "Kpg.", + "Ki.", + "Psr." +]; +},{}],465:[function(require,module,exports){ +arguments[4][439][0].apply(exports,arguments) +},{"./name":466,"./prefix":467,"./suffix":468,"/Users/a/dev/faker.js/lib/locales/ge/company/index.js":439}],466:[function(require,module,exports){ +module["exports"] = [ + "#{prefix} #{Name.last_name}", + "#{Name.last_name} #{suffix}", + "#{prefix} #{Name.last_name} #{suffix}" +]; + +},{}],467:[function(require,module,exports){ +module["exports"] = [ + "PT", + "CV", + "UD", + "PD", + "Perum" +]; +},{}],468:[function(require,module,exports){ +module["exports"] = [ + "(Persero) Tbk", + "Tbk" +]; +},{}],469:[function(require,module,exports){ +arguments[4][148][0].apply(exports,arguments) +},{"./month":470,"./weekday":471,"/Users/a/dev/faker.js/lib/locales/en/date/index.js":148}],470:[function(require,module,exports){ +module["exports"] = { + wide: [ + "Januari", + "Februari", + "Maret", + "April", + "Mei", + "Juni", + "Juli", + "Agustus", + "September", + "Oktober", + "November", + "Desember" + ], + wide_context: [ + "Januari", + "Februari", + "Maret", + "April", + "Mei", + "Juni", + "Juli", + "Agustus", + "September", + "Oktober", + "November", + "Desember" + ], + abbr: [ + "Jan", + "Feb", + "Mar", + "Apr", + "Mei", + "Jun", + "Jul", + "Ags", + "Sep", + "Okt", + "Nov", + "Des" + ], + abbr_context: [ + "Jan", + "Feb", + "Mar", + "Apr", + "Mei", + "Jun", + "Jul", + "Ags", + "Sep", + "Okt", + "Nov", + "Des" + ] +}; + +},{}],471:[function(require,module,exports){ +module["exports"] = { + wide: [ + "Minggu", + "Senin", + "Selasa", + "Rabu", + "Kamis", + "Jumat", + "Sabtu" + ], + wide_context: [ + "Minggu", + "Senin", + "Selasa", + "Rabu", + "Kamis", + "Jumat", + "Sabtu" + ], + abbr: [ + "Min", + "Sen", + "Sel", + "Rab", + "Kam", + "Jum", + "Sab" + ], + abbr_context: [ + "Min", + "Sen", + "Sel", + "Rab", + "Kam", + "Jum", + "Sab" + ] +}; + +},{}],472:[function(require,module,exports){ +var id = {}; +module['exports'] = id; +id.title = "Indonesia"; +id.address = require("./address"); +id.company = require("./company"); +id.internet = require("./internet"); +id.date = require("./date"); +id.name = require("./name"); +id.phone_number = require("./phone_number"); + +},{"./address":459,"./company":465,"./date":469,"./internet":475,"./name":478,"./phone_number":485}],473:[function(require,module,exports){ +module["exports"] = [ + "com", + "net", + "org", + "asia", + "tv", + "biz", + "info", + "in", + "name", + "co", + "ac.id", + "sch.id", + "go.id", + "mil.id", + "co.id", + "or.id", + "web.id", + "my.id", + "biz.id", + "desa.id" +]; +},{}],474:[function(require,module,exports){ +module["exports"] = [ + 'gmail.com', + 'yahoo.com', + 'gmail.co.id', + 'yahoo.co.id' +]; +},{}],475:[function(require,module,exports){ +arguments[4][37][0].apply(exports,arguments) +},{"./domain_suffix":473,"./free_email":474,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],476:[function(require,module,exports){ +module["exports"] = [ + "Ade", + "Agnes", + "Ajeng", + "Amalia", + "Anita", + "Ayu", + "Aisyah", + "Ana", + "Ami", + "Ani", + "Azalea", + "Aurora", + "Alika", + "Anastasia", + "Amelia", + "Almira", + "Bella", + "Betania", + "Belinda", + "Citra", + "Cindy", + "Chelsea", + "Clara", + "Cornelia", + "Cinta", + "Cinthia", + "Ciaobella", + "Cici", + "Carla", + "Calista", + "Devi", + "Dewi","Dian", + "Diah", + "Diana", + "Dina", + "Dinda", + "Dalima", + "Eka", + "Eva", + "Endah", + "Elisa", + "Eli", + "Ella", + "Ellis", + "Elma", + "Elvina", + "Fitria", + "Fitriani", + "Febi", + "Faizah", + "Farah", + "Farhunnisa", + "Fathonah", + "Gabriella", + "Gasti", + "Gawati", + "Genta", + "Ghaliyati", + "Gina", + "Gilda", + "Halima", + "Hesti", + "Hilda", + "Hafshah", + "Hamima", + "Hana", + "Hani", + "Hasna", + "Humaira", + "Ika", + "Indah", + "Intan", + "Irma", + "Icha", + "Ida", + "Ifa", + "Ilsa", + "Ina", + "Ira", + "Iriana", + "Jamalia", + "Janet", + "Jane", + "Julia", + "Juli", + "Jessica", + "Jasmin", + "Jelita", + "Kamaria", + "Kamila", + "Kani", + "Karen", + "Karimah", + "Kartika", + "Kasiyah", + "Keisha", + "Kezia", + "Kiandra", + "Kayla", + "Kania", + "Lala", + "Lalita", + "Latika", + "Laila", + "Laras", + "Lidya", + "Lili", + "Lintang", + "Maria", + "Mala", + "Maya", + "Maida", + "Maimunah", + "Melinda", + "Mila", + "Mutia", + "Michelle", + "Malika", + "Nadia", + "Nadine", + "Nabila", + "Natalia", + "Novi", + "Nova", + "Nurul", + "Nilam", + "Najwa", + "Olivia", + "Ophelia", + "Oni", + "Oliva", + "Padma", + "Putri", + "Paramita", + "Paris", + "Patricia", + "Paulin", + "Puput", + "Puji", + "Pia", + "Puspa", + "Puti", + "Putri", + "Padmi", + "Qori", + "Queen", + "Ratih", + "Ratna", + "Restu", + "Rini", + "Rika", + "Rina", + "Rahayu", + "Rahmi", + "Rachel", + "Rahmi", + "Raisa", + "Raina", + "Sarah", + "Sari", + "Siti", + "Siska", + "Suci", + "Syahrini", + "Septi", + "Sadina", + "Safina", + "Sakura", + "Salimah", + "Salwa", + "Salsabila", + "Samiah", + "Shania", + "Sabrina", + "Silvia", + "Shakila", + "Talia", + "Tami", + "Tira", + "Tiara", + "Titin", + "Tania", + "Tina", + "Tantri", + "Tari", + "Titi", + "Uchita", + "Unjani", + "Ulya", + "Uli", + "Ulva", + "Umi", + "Usyi", + "Vanya", + "Vanesa", + "Vivi", + "Vera", + "Vicky", + "Victoria", + "Violet", + "Winda", + "Widya", + "Wulan", + "Wirda", + "Wani", + "Yani", + "Yessi", + "Yulia", + "Yuliana", + "Yuni", + "Yunita", + "Yance", + "Zahra", + "Zalindra", + "Zaenab", + "Zulfa", + "Zizi", + "Zulaikha", + "Zamira", + "Zelda", + "Zelaya" +]; +},{}],477:[function(require,module,exports){ +module["exports"] = [ + "Agustina", + "Andriani", + "Anggraini", + "Aryani", + "Astuti", + "Fujiati", + "Farida", + "Handayani", + "Hassanah", + "Hartati", + "Hasanah", + "Haryanti", + "Hariyah", + "Hastuti", + "Halimah", + "Kusmawati", + "Kuswandari", + "Laksmiwati", + "Laksita", + "Lestari", + "Lailasari", + "Mandasari", + "Mardhiyah", + "Mayasari", + "Melani", + "Mulyani", + "Maryati", + "Nurdiyanti", + "Novitasari", + "Nuraini", + "Nasyidah", + "Nasyiah", + "Namaga", + "Palastri", + "Pudjiastuti", + "Puspasari", + "Puspita", + "Purwanti", + "Pratiwi", + "Purnawati", + "Pertiwi", + "Permata", + "Prastuti", + "Padmasari", + "Rahmawati", + "Rahayu", + "Riyanti", + "Rahimah", + "Suartini", + "Sudiati", + "Suryatmi", + "Susanti", + "Safitri", + "Oktaviani", + "Utami", + "Usamah", + "Usada", + "Uyainah", + "Yuniar", + "Yuliarti", + "Yulianti", + "Yolanda", + "Wahyuni", + "Wijayanti", + "Widiastuti", + "Winarsih", + "Wulandari", + "Wastuti", + "Zulaika" +]; +},{}],478:[function(require,module,exports){ +var name = {}; +module['exports'] = name; +name.male_first_name = require("./male_first_name"); +name.male_last_name = require("./male_last_name"); +name.female_first_name = require("./female_first_name"); +name.female_last_name = require("./female_last_name"); +name.prefix = require("./prefix"); +name.suffix = require("./suffix"); +name.name = require("./name"); + +},{"./female_first_name":476,"./female_last_name":477,"./male_first_name":479,"./male_last_name":480,"./name":481,"./prefix":482,"./suffix":483}],479:[function(require,module,exports){ +module["exports"] = [ + "Abyasa", + "Ade", + "Adhiarja", + "Adiarja", + "Adika", + "Adikara", + "Adinata", + "Aditya", + "Agus", + "Ajiman", + "Ajimat", + "Ajimin", + "Ajiono", + "Akarsana", + "Alambana", + "Among", + "Anggabaya", + "Anom", + "Argono", + "Aris", + "Arta", + "Artanto", + "Artawan", + "Arsipatra", + "Asirwada", + "Asirwanda", + "Aslijan", + "Asmadi", + "Asman", + "Asmianto", + "Asmuni", + "Aswani", + "Atma", + "Atmaja", + "Bagas", + "Bagiya", + "Bagus", + "Bagya", + "Bahuraksa", + "Bahuwarna", + "Bahuwirya", + "Bajragin", + "Bakda", + "Bakiadi", + "Bakianto", + "Bakidin", + "Bakijan", + "Bakiman", + "Bakiono", + "Bakti", + "Baktiadi", + "Baktianto", + "Baktiono", + "Bala", + "Balamantri", + "Balangga", + "Balapati", + "Balidin", + "Balijan", + "Bambang", + "Banara", + "Banawa", + "Banawi", + "Bancar", + "Budi", + "Cagak", + "Cager", + "Cahyadi", + "Cahyanto", + "Cahya", + "Cahyo", + "Cahyono", + "Caket", + "Cakrabirawa", + "Cakrabuana", + "Cakrajiya", + "Cakrawala", + "Cakrawangsa", + "Candra", + "Chandra", + "Candrakanta", + "Capa", + "Caraka", + "Carub", + "Catur", + "Caturangga", + "Cawisadi", + "Cawisono", + "Cawuk", + "Cayadi", + "Cecep", + "Cemani", + "Cemeti", + "Cemplunk", + "Cengkal", + "Cengkir", + "Dacin", + "Dadap", + "Dadi", + "Dagel", + "Daliman", + "Dalimin", + "Daliono", + "Damar", + "Damu", + "Danang", + "Daniswara", + "Danu", + "Danuja", + "Dariati", + "Darijan", + "Darimin", + "Darmaji", + "Darman", + "Darmana", + "Darmanto", + "Darsirah", + "Dartono", + "Daru", + "Daruna", + "Daryani", + "Dasa", + "Digdaya", + "Dimas", + "Dimaz", + "Dipa", + "Dirja", + "Drajat", + "Dwi", + "Dono", + "Dodo", + "Edi", + "Eka", + "Elon", + "Eluh", + "Eman", + "Emas", + "Embuh", + "Emong", + "Empluk", + "Endra", + "Enteng", + "Estiawan", + "Estiono", + "Eko", + "Edi", + "Edison", + "Edward", + "Elvin", + "Erik", + "Emil", + "Ega", + "Emin", + "Eja", + "Gada", + "Gadang", + "Gaduh", + "Gaiman", + "Galak", + "Galang", + "Galar", + "Galih", + "Galiono", + "Galuh", + "Galur", + "Gaman", + "Gamani", + "Gamanto", + "Gambira", + "Gamblang", + "Ganda", + "Gandewa", + "Gandi", + "Gandi", + "Ganep", + "Gangsa", + "Gangsar", + "Ganjaran", + "Gantar", + "Gara", + "Garan", + "Garang", + "Garda", + "Gatot", + "Gatra", + "Gilang", + "Galih", + "Ghani", + "Gading", + "Hairyanto", + "Hardana", + "Hardi", + "Harimurti", + "Harja", + "Harjasa", + "Harjaya", + "Harjo", + "Harsana", + "Harsanto", + "Harsaya", + "Hartaka", + "Hartana", + "Harto", + "Hasta", + "Heru", + "Himawan", + "Hadi", + "Halim", + "Hasim", + "Hasan", + "Hendra", + "Hendri", + "Heryanto", + "Hamzah", + "Hari", + "Imam", + "Indra", + "Irwan", + "Irsad", + "Ikhsan", + "Irfan", + "Ian", + "Ibrahim", + "Ibrani", + "Ismail", + "Irnanto", + "Ilyas", + "Ibun", + "Ivan", + "Ikin", + "Ihsan", + "Jabal", + "Jaeman", + "Jaga", + "Jagapati", + "Jagaraga", + "Jail", + "Jaiman", + "Jaka", + "Jarwa", + "Jarwadi", + "Jarwi", + "Jasmani", + "Jaswadi", + "Jati", + "Jatmiko", + "Jaya", + "Jayadi", + "Jayeng", + "Jinawi", + "Jindra", + "Joko", + "Jumadi", + "Jumari", + "Jamal", + "Jamil", + "Jais", + "Jefri", + "Johan", + "Jono", + "Kacung", + "Kajen", + "Kambali", + "Kamidin", + "Kariman", + "Karja", + "Karma", + "Karman", + "Karna", + "Karsa", + "Karsana", + "Karta", + "Kasiran", + "Kasusra", + "Kawaca", + "Kawaya", + "Kayun", + "Kemba", + "Kenari", + "Kenes", + "Kuncara", + "Kunthara", + "Kusuma", + "Kadir", + "Kala", + "Kalim", + "Kurnia", + "Kanda", + "Kardi", + "Karya", + "Kasim", + "Kairav", + "Kenzie", + "Kemal", + "Kamal", + "Koko", + "Labuh", + "Laksana", + "Lamar", + "Lanang", + "Langgeng", + "Lanjar", + "Lantar", + "Lega", + "Legawa", + "Lembah", + "Liman", + "Limar", + "Luhung", + "Lukita", + "Luluh", + "Lulut", + "Lurhur", + "Luwar", + "Luwes", + "Latif", + "Lasmanto", + "Lukman", + "Luthfi", + "Leo", + "Luis", + "Lutfan", + "Lasmono", + "Laswi", + "Mahesa", + "Makara", + "Makuta", + "Manah", + "Maras", + "Margana", + "Mariadi", + "Marsudi", + "Martaka", + "Martana", + "Martani", + "Marwata", + "Maryadi", + "Maryanto", + "Mitra", + "Mujur", + "Mulya", + "Mulyanto", + "Mulyono", + "Mumpuni", + "Muni", + "Mursita", + "Murti", + "Mustika", + "Maman", + "Mahmud", + "Mahdi", + "Mahfud", + "Malik", + "Muhammad", + "Mustofa", + "Marsito", + "Mursinin", + "Nalar", + "Naradi", + "Nardi", + "Niyaga", + "Nrima", + "Nugraha", + "Nyana", + "Narji", + "Nasab", + "Nasrullah", + "Nasim", + "Najib", + "Najam", + "Nyoman", + "Olga", + "Ozy", + "Omar", + "Opan", + "Oskar", + "Oman", + "Okto", + "Okta", + "Opung", + "Paiman", + "Panca", + "Pangeran", + "Pangestu", + "Pardi", + "Parman", + "Perkasa", + "Praba", + "Prabu", + "Prabawa", + "Prabowo", + "Prakosa", + "Pranata", + "Pranawa", + "Prasetya", + "Prasetyo", + "Prayitna", + "Prayoga", + "Prayogo", + "Purwadi", + "Purwa", + "Purwanto", + "Panji", + "Pandu", + "Paiman", + "Prima", + "Putu", + "Raden", + "Raditya", + "Raharja", + "Rama", + "Rangga", + "Reksa", + "Respati", + "Rusman", + "Rosman", + "Rahmat", + "Rahman", + "Rendy", + "Reza", + "Rizki", + "Ridwan", + "Rudi", + "Raden", + "Radit", + "Radika", + "Rafi", + "Rafid", + "Raihan", + "Salman", + "Saadat", + "Saiful", + "Surya", + "Slamet", + "Samsul", + "Soleh", + "Simon", + "Sabar", + "Sabri", + "Sidiq", + "Satya", + "Setya", + "Saka", + "Sakti", + "Taswir", + "Tedi", + "Teddy", + "Taufan", + "Taufik", + "Tomi", + "Tasnim", + "Teguh", + "Tasdik", + "Timbul", + "Tirta", + "Tirtayasa", + "Tri", + "Tugiman", + "Umar", + "Usman", + "Uda", + "Umay", + "Unggul", + "Utama", + "Umaya", + "Upik", + "Viktor", + "Vino", + "Vinsen", + "Vero", + "Vega", + "Viman", + "Virman", + "Wahyu", + "Wira", + "Wisnu", + "Wadi", + "Wardi", + "Warji", + "Waluyo", + "Wakiman", + "Wage", + "Wardaya", + "Warsa", + "Warsita", + "Warta", + "Wasis", + "Wawan", + "Xanana", + "Yahya", + "Yusuf", + "Yosef", + "Yono", + "Yoga" +]; +},{}],480:[function(require,module,exports){ +module["exports"] = [ + "Adriansyah", + "Ardianto", + "Anggriawan", + "Budiman", + "Budiyanto", + "Damanik", + "Dongoran", + "Dabukke", + "Firmansyah", + "Firgantoro", + "Gunarto", + "Gunawan", + "Hardiansyah", + "Habibi", + "Hakim", + "Halim", + "Haryanto", + "Hidayat", + "Hidayanto", + "Hutagalung", + "Hutapea", + "Hutasoit", + "Irawan", + "Iswahyudi", + "Kuswoyo", + "Januar", + "Jailani", + "Kurniawan", + "Kusumo", + "Latupono", + "Lazuardi", + "Maheswara", + "Mahendra", + "Mustofa", + "Mansur", + "Mandala", + "Megantara", + "Maulana", + "Maryadi", + "Mangunsong", + "Manullang", + "Marpaung", + "Marbun", + "Narpati", + "Natsir", + "Nugroho", + "Najmudin", + "Nashiruddin", + "Nainggolan", + "Nababan", + "Napitupulu", + "Pangestu", + "Putra", + "Pranowo", + "Prabowo", + "Pratama", + "Prasetya", + "Prasetyo", + "Pradana", + "Pradipta", + "Prakasa", + "Permadi", + "Prasasta", + "Prayoga", + "Ramadan", + "Rajasa", + "Rajata", + "Saptono", + "Santoso", + "Saputra", + "Saefullah", + "Setiawan", + "Suryono", + "Suwarno", + "Siregar", + "Sihombing", + "Salahudin", + "Sihombing", + "Samosir", + "Saragih", + "Sihotang", + "Simanjuntak", + "Sinaga", + "Simbolon", + "Sitompul", + "Sitorus", + "Sirait", + "Siregar", + "Situmorang", + "Tampubolon", + "Thamrin", + "Tamba", + "Tarihoran", + "Utama", + "Uwais", + "Wahyudin", + "Waluyo", + "Wibowo", + "Winarno", + "Wibisono", + "Wijaya", + "Widodo", + "Wacana", + "Waskita", + "Wasita", + "Zulkarnain" +]; +},{}],481:[function(require,module,exports){ +module["exports"] = [ + "#{male_first_name} #{male_last_name}", + "#{male_last_name} #{male_first_name}", + "#{male_first_name} #{male_first_name} #{male_last_name}", + "#{female_first_name} #{female_last_name}", + "#{female_first_name} #{male_last_name}", + "#{female_last_name} #{female_first_name}", + "#{female_first_name} #{female_first_name} #{female_last_name}" +]; + +},{}],482:[function(require,module,exports){ +module["exports"] = []; +},{}],483:[function(require,module,exports){ +module["exports"] = [ + "S.Ked", + "S.Gz", + "S.Pt", + "S.IP", + "S.E.I", + "S.E.", + "S.Kom", + "S.H.", + "S.T.", + "S.Pd", + "S.Psi", + "S.I.Kom", + "S.Sos", + "S.Farm", + "M.M.", + "M.Kom.", + "M.TI.", + "M.Pd", + "M.Farm", + "M.Ak" +]; +},{}],484:[function(require,module,exports){ +module["exports"] = [ + "02# #### ###", + "02## #### ###", + "03## #### ###", + "04## #### ###", + "05## #### ###", + "06## #### ###", + "07## #### ###", + "09## #### ###", + "02# #### ####", + "02## #### ####", + "03## #### ####", + "04## #### ####", + "05## #### ####", + "06## #### ####", + "07## #### ####", + "09## #### ####", + "08## ### ###", + "08## #### ###", + "08## #### ####", + "(+62) 8## ### ###", + "(+62) 2# #### ###", + "(+62) 2## #### ###", + "(+62) 3## #### ###", + "(+62) 4## #### ###", + "(+62) 5## #### ###", + "(+62) 6## #### ###", + "(+62) 7## #### ###", + "(+62) 8## #### ###", + "(+62) 9## #### ###", + "(+62) 2# #### ####", + "(+62) 2## #### ####", + "(+62) 3## #### ####", + "(+62) 4## #### ####", + "(+62) 5## #### ####", + "(+62) 6## #### ####", + "(+62) 7## #### ####", + "(+62) 8## #### ####", + "(+62) 9## #### ####" +]; +},{}],485:[function(require,module,exports){ +arguments[4][47][0].apply(exports,arguments) +},{"./formats":484,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],486:[function(require,module,exports){ +module.exports=require(423) +},{"/Users/a/dev/faker.js/lib/locales/ge/address/building_number.js":423}],487:[function(require,module,exports){ +module["exports"] = [ "#{city_prefix} #{Name.first_name} #{city_suffix}", "#{city_prefix} #{Name.first_name}", "#{Name.first_name} #{city_suffix}", "#{Name.last_name} #{city_suffix}" ]; -},{}],448:[function(require,module,exports){ +},{}],488:[function(require,module,exports){ module["exports"] = [ "San", "Borgo", "Sesto", "Quarto", "Settimo" ]; -},{}],449:[function(require,module,exports){ +},{}],489:[function(require,module,exports){ module["exports"] = [ "a mare", "lido", "ligure", "del friuli", @@ -25851,11 +35329,11 @@ "laziale", "terme", "sardo" ]; -},{}],450:[function(require,module,exports){ +},{}],490:[function(require,module,exports){ module["exports"] = [ "Afghanistan", "Albania", "Algeria", "American Samoa", @@ -26096,16 +35574,16 @@ "Yemen", "Zambia", "Zimbabwe" ]; -},{}],451:[function(require,module,exports){ +},{}],491:[function(require,module,exports){ module["exports"] = [ "Italia" ]; -},{}],452:[function(require,module,exports){ +},{}],492:[function(require,module,exports){ var address = {}; module['exports'] = address; address.city_prefix = require("./city_prefix"); address.city_suffix = require("./city_suffix"); address.country = require("./country"); @@ -26118,19 +35596,19 @@ address.city = require("./city"); address.street_name = require("./street_name"); address.street_address = require("./street_address"); address.default_country = require("./default_country"); -},{"./building_number":446,"./city":447,"./city_prefix":448,"./city_suffix":449,"./country":450,"./default_country":451,"./postcode":453,"./secondary_address":454,"./state":455,"./state_abbr":456,"./street_address":457,"./street_name":458,"./street_suffix":459}],453:[function(require,module,exports){ -module.exports=require(282) -},{"/Users/a/dev/faker.js/lib/locales/es/address/postcode.js":282}],454:[function(require,module,exports){ +},{"./building_number":486,"./city":487,"./city_prefix":488,"./city_suffix":489,"./country":490,"./default_country":491,"./postcode":493,"./secondary_address":494,"./state":495,"./state_abbr":496,"./street_address":497,"./street_name":498,"./street_suffix":499}],493:[function(require,module,exports){ +module.exports=require(291) +},{"/Users/a/dev/faker.js/lib/locales/es/address/postcode.js":291}],494:[function(require,module,exports){ module["exports"] = [ "Appartamento ##", "Piano #" ]; -},{}],455:[function(require,module,exports){ +},{}],495:[function(require,module,exports){ module["exports"] = [ "Agrigento", "Alessandria", "Ancona", "Aosta", @@ -26240,11 +35718,11 @@ "Vibo Valentia", "Vicenza", "Viterbo" ]; -},{}],456:[function(require,module,exports){ +},{}],496:[function(require,module,exports){ module["exports"] = [ "AG", "AL", "AN", "AO", @@ -26354,34 +35832,34 @@ "VV", "VI", "VT" ]; -},{}],457:[function(require,module,exports){ +},{}],497:[function(require,module,exports){ module["exports"] = [ "#{street_name} #{building_number}", "#{street_name} #{building_number}, #{secondary_address}" ]; -},{}],458:[function(require,module,exports){ +},{}],498:[function(require,module,exports){ module["exports"] = [ "#{street_suffix} #{Name.first_name}", "#{street_suffix} #{Name.last_name}" ]; -},{}],459:[function(require,module,exports){ +},{}],499:[function(require,module,exports){ module["exports"] = [ "Piazza", "Strada", "Via", "Borgo", "Contrada", "Rotonda", "Incrocio" ]; -},{}],460:[function(require,module,exports){ +},{}],500:[function(require,module,exports){ module["exports"] = [ "24 ore", "24/7", "terza generazione", "quarta generazione", @@ -26451,11 +35929,11 @@ "terziaria", "uniforme", "valore aggiunto" ]; -},{}],461:[function(require,module,exports){ +},{}],501:[function(require,module,exports){ module["exports"] = [ "valore aggiunto", "verticalizzate", "proattive", "forti", @@ -26501,11 +35979,11 @@ "collaborative", "olistiche", "ricche" ]; -},{}],462:[function(require,module,exports){ +},{}],502:[function(require,module,exports){ module["exports"] = [ "partnerships", "comunità", "ROI", "soluzioni", @@ -26531,11 +36009,11 @@ "esperienze", "webservices", "metodologie" ]; -},{}],463:[function(require,module,exports){ +},{}],503:[function(require,module,exports){ module["exports"] = [ "implementate", "utilizzo", "integrate", "ottimali", @@ -26563,11 +36041,11 @@ "transizionali", "matrici", "ricontestualizzate" ]; -},{}],464:[function(require,module,exports){ +},{}],504:[function(require,module,exports){ module["exports"] = [ "adattiva", "avanzata", "migliorata", "assimilata", @@ -26624,11 +36102,11 @@ "versatile", "virtuale", "visionaria" ]; -},{}],465:[function(require,module,exports){ +},{}],505:[function(require,module,exports){ var company = {}; module['exports'] = company; company.suffix = require("./suffix"); company.noun = require("./noun"); company.descriptor = require("./descriptor"); @@ -26636,18 +36114,18 @@ company.bs_noun = require("./bs_noun"); company.bs_verb = require("./bs_verb"); company.bs_adjective = require("./bs_adjective"); company.name = require("./name"); -},{"./adjective":460,"./bs_adjective":461,"./bs_noun":462,"./bs_verb":463,"./descriptor":464,"./name":466,"./noun":467,"./suffix":468}],466:[function(require,module,exports){ +},{"./adjective":500,"./bs_adjective":501,"./bs_noun":502,"./bs_verb":503,"./descriptor":504,"./name":506,"./noun":507,"./suffix":508}],506:[function(require,module,exports){ module["exports"] = [ "#{Name.last_name} #{suffix}", "#{Name.last_name}-#{Name.last_name} #{suffix}", "#{Name.last_name}, #{Name.last_name} e #{Name.last_name} #{suffix}" ]; -},{}],467:[function(require,module,exports){ +},{}],507:[function(require,module,exports){ module["exports"] = [ "Abilità", "Access", "Adattatore", "Algoritmo", @@ -26736,29 +36214,29 @@ "Utilizzazione", "Sito web", "Forza lavoro" ]; -},{}],468:[function(require,module,exports){ +},{}],508:[function(require,module,exports){ module["exports"] = [ "SPA", "e figli", "Group", "s.r.l." ]; -},{}],469:[function(require,module,exports){ +},{}],509:[function(require,module,exports){ var it = {}; module['exports'] = it; it.title = "Italian"; it.address = require("./address"); it.company = require("./company"); it.internet = require("./internet"); it.name = require("./name"); it.phone_number = require("./phone_number"); -},{"./address":452,"./company":465,"./internet":472,"./name":474,"./phone_number":480}],470:[function(require,module,exports){ +},{"./address":492,"./company":505,"./internet":512,"./name":514,"./phone_number":520}],510:[function(require,module,exports){ module["exports"] = [ "com", "com", "com", "net", @@ -26766,23 +36244,23 @@ "it", "it", "it" ]; -},{}],471:[function(require,module,exports){ +},{}],511:[function(require,module,exports){ module["exports"] = [ "gmail.com", "yahoo.com", "hotmail.com", "email.it", "libero.it", "yahoo.it" ]; -},{}],472:[function(require,module,exports){ +},{}],512:[function(require,module,exports){ arguments[4][37][0].apply(exports,arguments) -},{"./domain_suffix":470,"./free_email":471,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],473:[function(require,module,exports){ +},{"./domain_suffix":510,"./free_email":511,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],513:[function(require,module,exports){ module["exports"] = [ "Aaron", "Akira", "Alberto", "Alessandro", @@ -27144,20 +36622,20 @@ "Violante", "Vitalba", "Zelida" ]; -},{}],474:[function(require,module,exports){ +},{}],514:[function(require,module,exports){ var name = {}; module['exports'] = name; name.first_name = require("./first_name"); name.last_name = require("./last_name"); name.prefix = require("./prefix"); name.suffix = require("./suffix"); name.name = require("./name"); -},{"./first_name":473,"./last_name":475,"./name":476,"./prefix":477,"./suffix":478}],475:[function(require,module,exports){ +},{"./first_name":513,"./last_name":515,"./name":516,"./prefix":517,"./suffix":518}],515:[function(require,module,exports){ module["exports"] = [ "Amato", "Barbieri", "Barone", "Basile", @@ -27257,24 +36735,24 @@ "Villa", "Vitale", "Vitali" ]; -},{}],476:[function(require,module,exports){ -module.exports=require(441) -},{"/Users/a/dev/faker.js/lib/locales/ge/name/name.js":441}],477:[function(require,module,exports){ +},{}],516:[function(require,module,exports){ +module.exports=require(450) +},{"/Users/a/dev/faker.js/lib/locales/ge/name/name.js":450}],517:[function(require,module,exports){ module["exports"] = [ "Sig.", "Dott.", "Dr.", "Ing." ]; -},{}],478:[function(require,module,exports){ +},{}],518:[function(require,module,exports){ module["exports"] = []; -},{}],479:[function(require,module,exports){ +},{}],519:[function(require,module,exports){ module["exports"] = [ "+## ### ## ## ####", "+## ## #######", "+## ## ########", "+## ### #######", @@ -27285,56 +36763,56 @@ "+39 0## ### ###", "3## ### ###", "+39 3## ### ###" ]; -},{}],480:[function(require,module,exports){ +},{}],520:[function(require,module,exports){ arguments[4][47][0].apply(exports,arguments) -},{"./formats":479,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],481:[function(require,module,exports){ +},{"./formats":519,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],521:[function(require,module,exports){ module["exports"] = [ "#{city_prefix}#{Name.first_name}#{city_suffix}", "#{Name.first_name}#{city_suffix}", "#{city_prefix}#{Name.last_name}#{city_suffix}", "#{Name.last_name}#{city_suffix}" ]; -},{}],482:[function(require,module,exports){ +},{}],522:[function(require,module,exports){ module["exports"] = [ "北", "東", "西", "南", "新", "湖", "港" ]; -},{}],483:[function(require,module,exports){ +},{}],523:[function(require,module,exports){ module["exports"] = [ "市", "区", "町", "村" ]; -},{}],484:[function(require,module,exports){ +},{}],524:[function(require,module,exports){ var address = {}; module['exports'] = address; address.postcode = require("./postcode"); address.state = require("./state"); address.state_abbr = require("./state_abbr"); address.city_prefix = require("./city_prefix"); address.city_suffix = require("./city_suffix"); address.city = require("./city"); address.street_name = require("./street_name"); -},{"./city":481,"./city_prefix":482,"./city_suffix":483,"./postcode":485,"./state":486,"./state_abbr":487,"./street_name":488}],485:[function(require,module,exports){ +},{"./city":521,"./city_prefix":522,"./city_suffix":523,"./postcode":525,"./state":526,"./state_abbr":527,"./street_name":528}],525:[function(require,module,exports){ module["exports"] = [ "###-####" ]; -},{}],486:[function(require,module,exports){ +},{}],526:[function(require,module,exports){ module["exports"] = [ "北海道", "青森県", "岩手県", "宮城県", @@ -27381,11 +36859,11 @@ "宮崎県", "鹿児島県", "沖縄県" ]; -},{}],487:[function(require,module,exports){ +},{}],527:[function(require,module,exports){ module["exports"] = [ "1", "2", "3", "4", @@ -27432,35 +36910,35 @@ "45", "46", "47" ]; -},{}],488:[function(require,module,exports){ +},{}],528:[function(require,module,exports){ module["exports"] = [ "#{Name.first_name}#{street_suffix}", "#{Name.last_name}#{street_suffix}" ]; -},{}],489:[function(require,module,exports){ +},{}],529:[function(require,module,exports){ module["exports"] = [ "090-####-####", "080-####-####", "070-####-####" ]; -},{}],490:[function(require,module,exports){ +},{}],530:[function(require,module,exports){ arguments[4][29][0].apply(exports,arguments) -},{"./formats":489,"/Users/a/dev/faker.js/lib/locales/de/cell_phone/index.js":29}],491:[function(require,module,exports){ +},{"./formats":529,"/Users/a/dev/faker.js/lib/locales/de/cell_phone/index.js":29}],531:[function(require,module,exports){ var ja = {}; module['exports'] = ja; ja.title = "Japanese"; ja.address = require("./address"); ja.phone_number = require("./phone_number"); ja.cell_phone = require("./cell_phone"); ja.name = require("./name"); -},{"./address":484,"./cell_phone":490,"./name":493,"./phone_number":497}],492:[function(require,module,exports){ +},{"./address":524,"./cell_phone":530,"./name":533,"./phone_number":537}],532:[function(require,module,exports){ module["exports"] = [ "大翔", "蓮", "颯太", "樹", @@ -27481,18 +36959,18 @@ "心愛", "愛菜", "美咲" ]; -},{}],493:[function(require,module,exports){ +},{}],533:[function(require,module,exports){ var name = {}; module['exports'] = name; name.last_name = require("./last_name"); name.first_name = require("./first_name"); name.name = require("./name"); -},{"./first_name":492,"./last_name":494,"./name":495}],494:[function(require,module,exports){ +},{"./first_name":532,"./last_name":534,"./name":535}],534:[function(require,module,exports){ module["exports"] = [ "佐藤", "鈴木", "高橋", "田中", @@ -27512,31 +36990,31 @@ "木村", "林", "清水" ]; -},{}],495:[function(require,module,exports){ +},{}],535:[function(require,module,exports){ module["exports"] = [ "#{last_name} #{first_name}" ]; -},{}],496:[function(require,module,exports){ +},{}],536:[function(require,module,exports){ module["exports"] = [ "0####-#-####", "0###-##-####", "0##-###-####", "0#-####-####" ]; -},{}],497:[function(require,module,exports){ +},{}],537:[function(require,module,exports){ arguments[4][47][0].apply(exports,arguments) -},{"./formats":496,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],498:[function(require,module,exports){ +},{"./formats":536,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],538:[function(require,module,exports){ module["exports"] = [ "#{city_name}#{city_suffix}" ]; -},{}],499:[function(require,module,exports){ +},{}],539:[function(require,module,exports){ module["exports"] = [ "강릉", "양양", "인제", "광주", @@ -27564,18 +37042,18 @@ "부평", "강화", "수성" ]; -},{}],500:[function(require,module,exports){ +},{}],540:[function(require,module,exports){ module["exports"] = [ "구", "시", "군" ]; -},{}],501:[function(require,module,exports){ +},{}],541:[function(require,module,exports){ var address = {}; module['exports'] = address; address.postcode = require("./postcode"); address.state = require("./state"); address.state_abbr = require("./state_abbr"); @@ -27584,16 +37062,16 @@ address.city = require("./city"); address.street_root = require("./street_root"); address.street_suffix = require("./street_suffix"); address.street_name = require("./street_name"); -},{"./city":498,"./city_name":499,"./city_suffix":500,"./postcode":502,"./state":503,"./state_abbr":504,"./street_name":505,"./street_root":506,"./street_suffix":507}],502:[function(require,module,exports){ +},{"./city":538,"./city_name":539,"./city_suffix":540,"./postcode":542,"./state":543,"./state_abbr":544,"./street_name":545,"./street_root":546,"./street_suffix":547}],542:[function(require,module,exports){ module["exports"] = [ "###-###" ]; -},{}],503:[function(require,module,exports){ +},{}],543:[function(require,module,exports){ module["exports"] = [ "강원", "경기", "경남", "경북", @@ -27610,18 +37088,18 @@ "충남", "충북", "세종" ]; -},{}],504:[function(require,module,exports){ -module.exports=require(503) -},{"/Users/a/dev/faker.js/lib/locales/ko/address/state.js":503}],505:[function(require,module,exports){ +},{}],544:[function(require,module,exports){ +module.exports=require(543) +},{"/Users/a/dev/faker.js/lib/locales/ko/address/state.js":543}],545:[function(require,module,exports){ module["exports"] = [ "#{street_root}#{street_suffix}" ]; -},{}],506:[function(require,module,exports){ +},{}],546:[function(require,module,exports){ module["exports"] = [ "상계", "화곡", "신정", "목", @@ -27649,58 +37127,58 @@ "행신", "대명", "동탄" ]; -},{}],507:[function(require,module,exports){ +},{}],547:[function(require,module,exports){ module["exports"] = [ "읍", "면", "동" ]; -},{}],508:[function(require,module,exports){ +},{}],548:[function(require,module,exports){ var company = {}; module['exports'] = company; company.suffix = require("./suffix"); company.prefix = require("./prefix"); company.name = require("./name"); -},{"./name":509,"./prefix":510,"./suffix":511}],509:[function(require,module,exports){ +},{"./name":549,"./prefix":550,"./suffix":551}],549:[function(require,module,exports){ module["exports"] = [ "#{prefix} #{Name.first_name}", "#{Name.first_name} #{suffix}" ]; -},{}],510:[function(require,module,exports){ +},{}],550:[function(require,module,exports){ module["exports"] = [ "주식회사", "한국" ]; -},{}],511:[function(require,module,exports){ +},{}],551:[function(require,module,exports){ module["exports"] = [ "연구소", "게임즈", "그룹", "전자", "물산", "코리아" ]; -},{}],512:[function(require,module,exports){ +},{}],552:[function(require,module,exports){ var ko = {}; module['exports'] = ko; ko.title = "Korean"; ko.address = require("./address"); ko.phone_number = require("./phone_number"); ko.company = require("./company"); ko.internet = require("./internet"); ko.lorem = require("./lorem"); ko.name = require("./name"); -},{"./address":501,"./company":508,"./internet":515,"./lorem":516,"./name":519,"./phone_number":523}],513:[function(require,module,exports){ +},{"./address":541,"./company":548,"./internet":555,"./lorem":556,"./name":559,"./phone_number":563}],553:[function(require,module,exports){ module["exports"] = [ "co.kr", "com", "biz", "info", @@ -27708,23 +37186,23 @@ "net", "or.kr", "org" ]; -},{}],514:[function(require,module,exports){ +},{}],554:[function(require,module,exports){ module["exports"] = [ "gmail.com", "yahoo.co.kr", "hanmail.net", "naver.com" ]; -},{}],515:[function(require,module,exports){ +},{}],555:[function(require,module,exports){ arguments[4][37][0].apply(exports,arguments) -},{"./domain_suffix":513,"./free_email":514,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],516:[function(require,module,exports){ +},{"./domain_suffix":553,"./free_email":554,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],556:[function(require,module,exports){ arguments[4][38][0].apply(exports,arguments) -},{"./words":517,"/Users/a/dev/faker.js/lib/locales/de/lorem/index.js":38}],517:[function(require,module,exports){ +},{"./words":557,"/Users/a/dev/faker.js/lib/locales/de/lorem/index.js":38}],557:[function(require,module,exports){ module["exports"] = [ "국가는", "법률이", "정하는", "바에", @@ -27852,11 +37330,11 @@ "같은", "효력을", "가진다." ]; -},{}],518:[function(require,module,exports){ +},{}],558:[function(require,module,exports){ module["exports"] = [ "서연", "민서", "서현", "지우", @@ -27877,13 +37355,13 @@ "민재", "우진", "은주" ]; -},{}],519:[function(require,module,exports){ -arguments[4][493][0].apply(exports,arguments) -},{"./first_name":518,"./last_name":520,"./name":521,"/Users/a/dev/faker.js/lib/locales/ja/name/index.js":493}],520:[function(require,module,exports){ +},{}],559:[function(require,module,exports){ +arguments[4][533][0].apply(exports,arguments) +},{"./first_name":558,"./last_name":560,"./name":561,"/Users/a/dev/faker.js/lib/locales/ja/name/index.js":533}],560:[function(require,module,exports){ module["exports"] = [ "김", "이", "박", "최", @@ -27903,33 +37381,33 @@ "송", "류", "홍" ]; -},{}],521:[function(require,module,exports){ -module.exports=require(495) -},{"/Users/a/dev/faker.js/lib/locales/ja/name/name.js":495}],522:[function(require,module,exports){ +},{}],561:[function(require,module,exports){ +module.exports=require(535) +},{"/Users/a/dev/faker.js/lib/locales/ja/name/name.js":535}],562:[function(require,module,exports){ module["exports"] = [ "0#-#####-####", "0##-###-####", "0##-####-####" ]; -},{}],523:[function(require,module,exports){ +},{}],563:[function(require,module,exports){ arguments[4][47][0].apply(exports,arguments) -},{"./formats":522,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],524:[function(require,module,exports){ +},{"./formats":562,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],564:[function(require,module,exports){ module["exports"] = [ "#", "##" ]; -},{}],525:[function(require,module,exports){ +},{}],565:[function(require,module,exports){ module["exports"] = [ "#{city_root}#{city_suffix}" ]; -},{}],526:[function(require,module,exports){ +},{}],566:[function(require,module,exports){ module["exports"] = [ "Fet", "Gjes", "Høy", "Inn", @@ -27946,11 +37424,11 @@ "Tand", "Ut", "Vest" ]; -},{}],527:[function(require,module,exports){ +},{}],567:[function(require,module,exports){ module["exports"] = [ "berg", "borg", "by", "bø", @@ -27978,26 +37456,26 @@ "ø", "øy", "ås" ]; -},{}],528:[function(require,module,exports){ +},{}],568:[function(require,module,exports){ module["exports"] = [ "sgate", "svei", "s Gate", "s Vei", "gata", "veien" ]; -},{}],529:[function(require,module,exports){ +},{}],569:[function(require,module,exports){ module["exports"] = [ "Norge" ]; -},{}],530:[function(require,module,exports){ +},{}],570:[function(require,module,exports){ var address = {}; module['exports'] = address; address.city_root = require("./city_root"); address.city_suffix = require("./city_suffix"); address.street_prefix = require("./street_prefix"); @@ -28011,51 +37489,51 @@ address.city = require("./city"); address.street_name = require("./street_name"); address.street_address = require("./street_address"); address.default_country = require("./default_country"); -},{"./building_number":524,"./city":525,"./city_root":526,"./city_suffix":527,"./common_street_suffix":528,"./default_country":529,"./postcode":531,"./secondary_address":532,"./state":533,"./street_address":534,"./street_name":535,"./street_prefix":536,"./street_root":537,"./street_suffix":538}],531:[function(require,module,exports){ +},{"./building_number":564,"./city":565,"./city_root":566,"./city_suffix":567,"./common_street_suffix":568,"./default_country":569,"./postcode":571,"./secondary_address":572,"./state":573,"./street_address":574,"./street_name":575,"./street_prefix":576,"./street_root":577,"./street_suffix":578}],571:[function(require,module,exports){ module["exports"] = [ "####", "####", "####", "0###" ]; -},{}],532:[function(require,module,exports){ +},{}],572:[function(require,module,exports){ module["exports"] = [ "Leil. ###", "Oppgang A", "Oppgang B" ]; -},{}],533:[function(require,module,exports){ +},{}],573:[function(require,module,exports){ module["exports"] = [ "" ]; -},{}],534:[function(require,module,exports){ +},{}],574:[function(require,module,exports){ module.exports=require(25) -},{"/Users/a/dev/faker.js/lib/locales/de/address/street_address.js":25}],535:[function(require,module,exports){ +},{"/Users/a/dev/faker.js/lib/locales/de/address/street_address.js":25}],575:[function(require,module,exports){ module["exports"] = [ "#{street_root}#{street_suffix}", "#{street_prefix} #{street_root}#{street_suffix}", "#{Name.first_name}#{common_street_suffix}", "#{Name.last_name}#{common_street_suffix}" ]; -},{}],536:[function(require,module,exports){ +},{}],576:[function(require,module,exports){ module["exports"] = [ "Øvre", "Nedre", "Søndre", "Gamle", "Østre", "Vestre" ]; -},{}],537:[function(require,module,exports){ +},{}],577:[function(require,module,exports){ module["exports"] = [ "Eike", "Bjørke", "Gran", "Vass", @@ -28088,11 +37566,11 @@ "Blåveis", "Torg", "Sjø" ]; -},{}],538:[function(require,module,exports){ +},{}],578:[function(require,module,exports){ module["exports"] = [ "alléen", "bakken", "berget", "bråten", @@ -28138,50 +37616,50 @@ "vollen", "vika", "åsen" ]; -},{}],539:[function(require,module,exports){ +},{}],579:[function(require,module,exports){ arguments[4][83][0].apply(exports,arguments) -},{"./name":540,"./suffix":541,"/Users/a/dev/faker.js/lib/locales/de_CH/company/index.js":83}],540:[function(require,module,exports){ +},{"./name":580,"./suffix":581,"/Users/a/dev/faker.js/lib/locales/de_CH/company/index.js":83}],580:[function(require,module,exports){ module["exports"] = [ "#{Name.last_name} #{suffix}", "#{Name.last_name}-#{Name.last_name}", "#{Name.last_name}, #{Name.last_name} og #{Name.last_name}" ]; -},{}],541:[function(require,module,exports){ +},{}],581:[function(require,module,exports){ module["exports"] = [ "Gruppen", "AS", "ASA", "BA", "RFH", "og Sønner" ]; -},{}],542:[function(require,module,exports){ +},{}],582:[function(require,module,exports){ var nb_NO = {}; module['exports'] = nb_NO; nb_NO.title = "Norwegian"; nb_NO.address = require("./address"); nb_NO.company = require("./company"); nb_NO.internet = require("./internet"); nb_NO.name = require("./name"); nb_NO.phone_number = require("./phone_number"); -},{"./address":530,"./company":539,"./internet":544,"./name":547,"./phone_number":554}],543:[function(require,module,exports){ +},{"./address":570,"./company":579,"./internet":584,"./name":587,"./phone_number":594}],583:[function(require,module,exports){ module["exports"] = [ "no", "com", "net", "org" ]; -},{}],544:[function(require,module,exports){ +},{}],584:[function(require,module,exports){ arguments[4][88][0].apply(exports,arguments) -},{"./domain_suffix":543,"/Users/a/dev/faker.js/lib/locales/de_CH/internet/index.js":88}],545:[function(require,module,exports){ +},{"./domain_suffix":583,"/Users/a/dev/faker.js/lib/locales/de_CH/internet/index.js":88}],585:[function(require,module,exports){ module["exports"] = [ "Emma", "Sara", "Thea", "Ida", @@ -28231,11 +37709,11 @@ "Synne", "Sandra", "Madeleine" ]; -},{}],546:[function(require,module,exports){ +},{}],586:[function(require,module,exports){ module["exports"] = [ "Emma", "Sara", "Thea", "Ida", @@ -28335,22 +37813,22 @@ "Theodor", "Mikkel", "Aksel" ]; -},{}],547:[function(require,module,exports){ +},{}],587:[function(require,module,exports){ var name = {}; module['exports'] = name; name.first_name = require("./first_name"); name.feminine_name = require("./feminine_name"); name.masculine_name = require("./masculine_name"); name.last_name = require("./last_name"); name.prefix = require("./prefix"); name.suffix = require("./suffix"); name.name = require("./name"); -},{"./feminine_name":545,"./first_name":546,"./last_name":548,"./masculine_name":549,"./name":550,"./prefix":551,"./suffix":552}],548:[function(require,module,exports){ +},{"./feminine_name":585,"./first_name":586,"./last_name":588,"./masculine_name":589,"./name":590,"./prefix":591,"./suffix":592}],588:[function(require,module,exports){ module["exports"] = [ "Johansen", "Hansen", "Andersen", "Kristiansen", @@ -28450,11 +37928,11 @@ "Gran", "Finstad", "Edvardsen" ]; -},{}],549:[function(require,module,exports){ +},{}],589:[function(require,module,exports){ module["exports"] = [ "Markus", "Mathias", "Kristian", "Jonas", @@ -28504,48 +37982,48 @@ "Theodor", "Mikkel", "Aksel" ]; -},{}],550:[function(require,module,exports){ +},{}],590:[function(require,module,exports){ module["exports"] = [ "#{prefix} #{first_name} #{last_name}", "#{first_name} #{last_name} #{suffix}", "#{feminine_name} #{feminine_name} #{last_name}", "#{masculine_name} #{masculine_name} #{last_name}", "#{first_name} #{last_name} #{last_name}", "#{first_name} #{last_name}" ]; -},{}],551:[function(require,module,exports){ +},{}],591:[function(require,module,exports){ module["exports"] = [ "Dr.", "Prof." ]; -},{}],552:[function(require,module,exports){ +},{}],592:[function(require,module,exports){ module["exports"] = [ "Jr.", "Sr.", "I", "II", "III", "IV", "V" ]; -},{}],553:[function(require,module,exports){ +},{}],593:[function(require,module,exports){ module["exports"] = [ "########", "## ## ## ##", "### ## ###", "+47 ## ## ## ##" ]; -},{}],554:[function(require,module,exports){ +},{}],594:[function(require,module,exports){ arguments[4][47][0].apply(exports,arguments) -},{"./formats":553,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],555:[function(require,module,exports){ +},{"./formats":593,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],595:[function(require,module,exports){ module["exports"] = [ "Bhaktapur", "Biratnagar", "Birendranagar", "Birgunj", @@ -28561,29 +38039,29 @@ "Lahan", "Nepalgunj", "Pokhara" ]; -},{}],556:[function(require,module,exports){ +},{}],596:[function(require,module,exports){ module["exports"] = [ "Nepal" ]; -},{}],557:[function(require,module,exports){ +},{}],597:[function(require,module,exports){ var address = {}; module['exports'] = address; address.postcode = require("./postcode"); address.state = require("./state"); address.city = require("./city"); address.default_country = require("./default_country"); -},{"./city":555,"./default_country":556,"./postcode":558,"./state":559}],558:[function(require,module,exports){ +},{"./city":595,"./default_country":596,"./postcode":598,"./state":599}],598:[function(require,module,exports){ module["exports"] = [ 0 ]; -},{}],559:[function(require,module,exports){ +},{}],599:[function(require,module,exports){ module["exports"] = [ "Baglung", "Banke", "Bara", "Bardiya", @@ -28636,50 +38114,50 @@ "Syangja", "Tanahu", "Terhathum" ]; -},{}],560:[function(require,module,exports){ -arguments[4][183][0].apply(exports,arguments) -},{"./suffix":561,"/Users/a/dev/faker.js/lib/locales/en_AU/company/index.js":183}],561:[function(require,module,exports){ +},{}],600:[function(require,module,exports){ +arguments[4][191][0].apply(exports,arguments) +},{"./suffix":601,"/Users/a/dev/faker.js/lib/locales/en_AU/company/index.js":191}],601:[function(require,module,exports){ module["exports"] = [ "Pvt Ltd", "Group", "Ltd", "Limited" ]; -},{}],562:[function(require,module,exports){ +},{}],602:[function(require,module,exports){ var nep = {}; module['exports'] = nep; nep.title = "Nepalese"; nep.name = require("./name"); nep.address = require("./address"); nep.internet = require("./internet"); nep.company = require("./company"); nep.phone_number = require("./phone_number"); -},{"./address":557,"./company":560,"./internet":565,"./name":567,"./phone_number":570}],563:[function(require,module,exports){ +},{"./address":597,"./company":600,"./internet":605,"./name":607,"./phone_number":610}],603:[function(require,module,exports){ module["exports"] = [ "np", "com", "info", "net", "org" ]; -},{}],564:[function(require,module,exports){ +},{}],604:[function(require,module,exports){ module["exports"] = [ "worldlink.com.np", "gmail.com", "yahoo.com", "hotmail.com" ]; -},{}],565:[function(require,module,exports){ +},{}],605:[function(require,module,exports){ arguments[4][37][0].apply(exports,arguments) -},{"./domain_suffix":563,"./free_email":564,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],566:[function(require,module,exports){ +},{"./domain_suffix":603,"./free_email":604,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],606:[function(require,module,exports){ module["exports"] = [ "Aarav", "Ajita", "Amit", "Amita", @@ -28734,13 +38212,13 @@ "Suraj", "Susan", "Sushant" ]; -},{}],567:[function(require,module,exports){ -arguments[4][189][0].apply(exports,arguments) -},{"./first_name":566,"./last_name":568,"/Users/a/dev/faker.js/lib/locales/en_AU/name/index.js":189}],568:[function(require,module,exports){ +},{}],607:[function(require,module,exports){ +arguments[4][197][0].apply(exports,arguments) +},{"./first_name":606,"./last_name":608,"/Users/a/dev/faker.js/lib/locales/en_AU/name/index.js":197}],608:[function(require,module,exports){ module["exports"] = [ "Adhikari", "Aryal", "Baral", "Basnet", @@ -28779,20 +38257,20 @@ "Subedi", "Tamang", "Thapa" ]; -},{}],569:[function(require,module,exports){ +},{}],609:[function(require,module,exports){ module["exports"] = [ "##-#######", "+977-#-#######", "+977########" ]; -},{}],570:[function(require,module,exports){ +},{}],610:[function(require,module,exports){ arguments[4][47][0].apply(exports,arguments) -},{"./formats":569,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],571:[function(require,module,exports){ +},{"./formats":609,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],611:[function(require,module,exports){ module["exports"] = [ "#", "##", "###", "###a", @@ -28801,29 +38279,29 @@ "### I", "### II", "### III" ]; -},{}],572:[function(require,module,exports){ +},{}],612:[function(require,module,exports){ module["exports"] = [ "#{Name.first_name}#{city_suffix}", "#{Name.last_name}#{city_suffix}", "#{city_prefix} #{Name.first_name}#{city_suffix}", "#{city_prefix} #{Name.last_name}#{city_suffix}" ]; -},{}],573:[function(require,module,exports){ +},{}],613:[function(require,module,exports){ module["exports"] = [ "Noord", "Oost", "West", "Zuid", "Nieuw", "Oud" ]; -},{}],574:[function(require,module,exports){ +},{}],614:[function(require,module,exports){ module["exports"] = [ "dam", "berg", " aan de Rijn", " aan de IJssel", @@ -28852,11 +38330,11 @@ "ingen", "plas", "meer" ]; -},{}],575:[function(require,module,exports){ +},{}],615:[function(require,module,exports){ module["exports"] = [ "Afghanistan", "Akrotiri", "Albanië", "Algerije", @@ -29112,16 +38590,16 @@ "Zuid-Korea", "Zweden", "Zwitserland" ]; -},{}],576:[function(require,module,exports){ +},{}],616:[function(require,module,exports){ module["exports"] = [ "Nederland" ]; -},{}],577:[function(require,module,exports){ +},{}],617:[function(require,module,exports){ var address = {}; module['exports'] = address; address.city_prefix = require("./city_prefix"); address.city_suffix = require("./city_suffix"); address.city = require("./city"); @@ -29133,23 +38611,23 @@ address.street_address = require("./street_address"); address.postcode = require("./postcode"); address.state = require("./state"); address.default_country = require("./default_country"); -},{"./building_number":571,"./city":572,"./city_prefix":573,"./city_suffix":574,"./country":575,"./default_country":576,"./postcode":578,"./secondary_address":579,"./state":580,"./street_address":581,"./street_name":582,"./street_suffix":583}],578:[function(require,module,exports){ +},{"./building_number":611,"./city":612,"./city_prefix":613,"./city_suffix":614,"./country":615,"./default_country":616,"./postcode":618,"./secondary_address":619,"./state":620,"./street_address":621,"./street_name":622,"./street_suffix":623}],618:[function(require,module,exports){ module["exports"] = [ "#### ??" ]; -},{}],579:[function(require,module,exports){ +},{}],619:[function(require,module,exports){ module["exports"] = [ "1 hoog", "2 hoog", "3 hoog" ]; -},{}],580:[function(require,module,exports){ +},{}],620:[function(require,module,exports){ module["exports"] = [ "Noord-Holland", "Zuid-Holland", "Utrecht", "Zeeland", @@ -29161,63 +38639,63 @@ "Noord-Brabant", "Limburg", "Flevoland" ]; -},{}],581:[function(require,module,exports){ +},{}],621:[function(require,module,exports){ module.exports=require(25) -},{"/Users/a/dev/faker.js/lib/locales/de/address/street_address.js":25}],582:[function(require,module,exports){ -module.exports=require(488) -},{"/Users/a/dev/faker.js/lib/locales/ja/address/street_name.js":488}],583:[function(require,module,exports){ +},{"/Users/a/dev/faker.js/lib/locales/de/address/street_address.js":25}],622:[function(require,module,exports){ +module.exports=require(528) +},{"/Users/a/dev/faker.js/lib/locales/ja/address/street_name.js":528}],623:[function(require,module,exports){ module["exports"] = [ "straat", "laan", "weg", "plantsoen", "park" ]; -},{}],584:[function(require,module,exports){ -arguments[4][183][0].apply(exports,arguments) -},{"./suffix":585,"/Users/a/dev/faker.js/lib/locales/en_AU/company/index.js":183}],585:[function(require,module,exports){ +},{}],624:[function(require,module,exports){ +arguments[4][191][0].apply(exports,arguments) +},{"./suffix":625,"/Users/a/dev/faker.js/lib/locales/en_AU/company/index.js":191}],625:[function(require,module,exports){ module["exports"] = [ "BV", "V.O.F.", "Group", "en Zonen" ]; -},{}],586:[function(require,module,exports){ +},{}],626:[function(require,module,exports){ var nl = {}; module['exports'] = nl; nl.title = "Dutch"; nl.address = require("./address"); nl.company = require("./company"); nl.internet = require("./internet"); nl.lorem = require("./lorem"); nl.name = require("./name"); nl.phone_number = require("./phone_number"); -},{"./address":577,"./company":584,"./internet":589,"./lorem":590,"./name":594,"./phone_number":601}],587:[function(require,module,exports){ +},{"./address":617,"./company":624,"./internet":629,"./lorem":630,"./name":634,"./phone_number":641}],627:[function(require,module,exports){ module["exports"] = [ "nl", "com", "net", "org" ]; -},{}],588:[function(require,module,exports){ +},{}],628:[function(require,module,exports){ module.exports=require(36) -},{"/Users/a/dev/faker.js/lib/locales/de/internet/free_email.js":36}],589:[function(require,module,exports){ +},{"/Users/a/dev/faker.js/lib/locales/de/internet/free_email.js":36}],629:[function(require,module,exports){ arguments[4][37][0].apply(exports,arguments) -},{"./domain_suffix":587,"./free_email":588,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],590:[function(require,module,exports){ -module.exports=require(161) -},{"./supplemental":591,"./words":592,"/Users/a/dev/faker.js/lib/locales/en/lorem/index.js":161}],591:[function(require,module,exports){ -module.exports=require(162) -},{"/Users/a/dev/faker.js/lib/locales/en/lorem/supplemental.js":162}],592:[function(require,module,exports){ +},{"./domain_suffix":627,"./free_email":628,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],630:[function(require,module,exports){ +module.exports=require(167) +},{"./supplemental":631,"./words":632,"/Users/a/dev/faker.js/lib/locales/en/lorem/index.js":167}],631:[function(require,module,exports){ +module.exports=require(168) +},{"/Users/a/dev/faker.js/lib/locales/en/lorem/supplemental.js":168}],632:[function(require,module,exports){ module.exports=require(39) -},{"/Users/a/dev/faker.js/lib/locales/de/lorem/words.js":39}],593:[function(require,module,exports){ +},{"/Users/a/dev/faker.js/lib/locales/de/lorem/words.js":39}],633:[function(require,module,exports){ module["exports"] = [ "Amber", "Anna", "Anne", "Anouk", @@ -29267,21 +38745,21 @@ "Thomas", "Tim", "Tom" ]; -},{}],594:[function(require,module,exports){ +},{}],634:[function(require,module,exports){ var name = {}; module['exports'] = name; name.first_name = require("./first_name"); name.tussenvoegsel = require("./tussenvoegsel"); name.last_name = require("./last_name"); name.prefix = require("./prefix"); name.suffix = require("./suffix"); name.name = require("./name"); -},{"./first_name":593,"./last_name":595,"./name":596,"./prefix":597,"./suffix":598,"./tussenvoegsel":599}],595:[function(require,module,exports){ +},{"./first_name":633,"./last_name":635,"./name":636,"./prefix":637,"./suffix":638,"./tussenvoegsel":639}],635:[function(require,module,exports){ module["exports"] = [ "Bakker", "Beek", "Berg", "Boer", @@ -29331,57 +38809,57 @@ "Wal", "Willems", "Wit" ]; -},{}],596:[function(require,module,exports){ +},{}],636:[function(require,module,exports){ module["exports"] = [ "#{prefix} #{first_name} #{last_name}", "#{first_name} #{last_name} #{suffix}", "#{first_name} #{last_name}", "#{first_name} #{last_name}", "#{first_name} #{tussenvoegsel} #{last_name}", "#{first_name} #{tussenvoegsel} #{last_name}" ]; -},{}],597:[function(require,module,exports){ +},{}],637:[function(require,module,exports){ module["exports"] = [ "Dhr.", "Mevr. Dr.", "Bsc", "Msc", "Prof." ]; -},{}],598:[function(require,module,exports){ -module.exports=require(552) -},{"/Users/a/dev/faker.js/lib/locales/nb_NO/name/suffix.js":552}],599:[function(require,module,exports){ +},{}],638:[function(require,module,exports){ +module.exports=require(592) +},{"/Users/a/dev/faker.js/lib/locales/nb_NO/name/suffix.js":592}],639:[function(require,module,exports){ module["exports"] = [ "van", "van de", "van den", "van 't", "van het", "de", "den" ]; -},{}],600:[function(require,module,exports){ +},{}],640:[function(require,module,exports){ module["exports"] = [ "(####) ######", "##########", "06########", "06 #### ####" ]; -},{}],601:[function(require,module,exports){ +},{}],641:[function(require,module,exports){ arguments[4][47][0].apply(exports,arguments) -},{"./formats":600,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],602:[function(require,module,exports){ -module.exports=require(91) -},{"/Users/a/dev/faker.js/lib/locales/en/address/building_number.js":91}],603:[function(require,module,exports){ +},{"./formats":640,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],642:[function(require,module,exports){ +module.exports=require(96) +},{"/Users/a/dev/faker.js/lib/locales/en/address/building_number.js":96}],643:[function(require,module,exports){ module.exports=require(49) -},{"/Users/a/dev/faker.js/lib/locales/de_AT/address/city.js":49}],604:[function(require,module,exports){ +},{"/Users/a/dev/faker.js/lib/locales/de_AT/address/city.js":49}],644:[function(require,module,exports){ module["exports"] = [ "Aleksandrów Kujawski", "Aleksandrów Łódzki", "Alwernia", "Andrychów", @@ -30289,11 +39767,11 @@ "Żychlin", "Żyrardów", "Żywiec" ]; -},{}],605:[function(require,module,exports){ +},{}],645:[function(require,module,exports){ module["exports"] = [ "Afganistan", "Albania", "Algieria", "Andora", @@ -30492,16 +39970,16 @@ "Zambia", "Zimbabwe", "Zjednoczone Emiraty Arabskie" ]; -},{}],606:[function(require,module,exports){ +},{}],646:[function(require,module,exports){ module["exports"] = [ "Polska" ]; -},{}],607:[function(require,module,exports){ +},{}],647:[function(require,module,exports){ var address = {}; module['exports'] = address; address.country = require("./country"); address.building_number = require("./building_number"); address.street_prefix = require("./street_prefix"); @@ -30513,18 +39991,18 @@ address.city = require("./city"); address.street_name = require("./street_name"); address.street_address = require("./street_address"); address.default_country = require("./default_country"); -},{"./building_number":602,"./city":603,"./city_name":604,"./country":605,"./default_country":606,"./postcode":608,"./secondary_address":609,"./state":610,"./state_abbr":611,"./street_address":612,"./street_name":613,"./street_prefix":614}],608:[function(require,module,exports){ +},{"./building_number":642,"./city":643,"./city_name":644,"./country":645,"./default_country":646,"./postcode":648,"./secondary_address":649,"./state":650,"./state_abbr":651,"./street_address":652,"./street_name":653,"./street_prefix":654}],648:[function(require,module,exports){ module["exports"] = [ "##-###" ]; -},{}],609:[function(require,module,exports){ -module.exports=require(102) -},{"/Users/a/dev/faker.js/lib/locales/en/address/secondary_address.js":102}],610:[function(require,module,exports){ +},{}],649:[function(require,module,exports){ +module.exports=require(107) +},{"/Users/a/dev/faker.js/lib/locales/en/address/secondary_address.js":107}],650:[function(require,module,exports){ module["exports"] = [ "Dolnośląskie", "Kujawsko-pomorskie", "Lubelskie", "Lubuskie", @@ -30540,11 +40018,11 @@ "Warmińsko-mazurskie", "Wielkopolskie", "Zachodniopomorskie" ]; -},{}],611:[function(require,module,exports){ +},{}],651:[function(require,module,exports){ module["exports"] = [ "DŚ", "KP", "LB", "LS", @@ -30560,24 +40038,24 @@ "WM", "WP", "ZP" ]; -},{}],612:[function(require,module,exports){ +},{}],652:[function(require,module,exports){ module.exports=require(25) -},{"/Users/a/dev/faker.js/lib/locales/de/address/street_address.js":25}],613:[function(require,module,exports){ +},{"/Users/a/dev/faker.js/lib/locales/de/address/street_address.js":25}],653:[function(require,module,exports){ module["exports"] = [ "#{street_prefix} #{Name.last_name}" ]; -},{}],614:[function(require,module,exports){ +},{}],654:[function(require,module,exports){ module["exports"] = [ "ul.", "al." ]; -},{}],615:[function(require,module,exports){ +},{}],655:[function(require,module,exports){ module["exports"] = [ "50-###-##-##", "51-###-##-##", "53-###-##-##", "57-###-##-##", @@ -30589,23 +40067,23 @@ "78-###-##-##", "79-###-##-##", "88-###-##-##" ]; -},{}],616:[function(require,module,exports){ +},{}],656:[function(require,module,exports){ arguments[4][29][0].apply(exports,arguments) -},{"./formats":615,"/Users/a/dev/faker.js/lib/locales/de/cell_phone/index.js":29}],617:[function(require,module,exports){ -module.exports=require(123) -},{"/Users/a/dev/faker.js/lib/locales/en/company/adjective.js":123}],618:[function(require,module,exports){ -module.exports=require(124) -},{"/Users/a/dev/faker.js/lib/locales/en/company/bs_adjective.js":124}],619:[function(require,module,exports){ -module.exports=require(125) -},{"/Users/a/dev/faker.js/lib/locales/en/company/bs_noun.js":125}],620:[function(require,module,exports){ -module.exports=require(126) -},{"/Users/a/dev/faker.js/lib/locales/en/company/bs_verb.js":126}],621:[function(require,module,exports){ -module.exports=require(127) -},{"/Users/a/dev/faker.js/lib/locales/en/company/descriptor.js":127}],622:[function(require,module,exports){ +},{"./formats":655,"/Users/a/dev/faker.js/lib/locales/de/cell_phone/index.js":29}],657:[function(require,module,exports){ +module.exports=require(128) +},{"/Users/a/dev/faker.js/lib/locales/en/company/adjective.js":128}],658:[function(require,module,exports){ +module.exports=require(129) +},{"/Users/a/dev/faker.js/lib/locales/en/company/bs_adjective.js":129}],659:[function(require,module,exports){ +module.exports=require(130) +},{"/Users/a/dev/faker.js/lib/locales/en/company/bs_noun.js":130}],660:[function(require,module,exports){ +module.exports=require(131) +},{"/Users/a/dev/faker.js/lib/locales/en/company/bs_verb.js":131}],661:[function(require,module,exports){ +module.exports=require(132) +},{"/Users/a/dev/faker.js/lib/locales/en/company/descriptor.js":132}],662:[function(require,module,exports){ var company = {}; module['exports'] = company; company.suffix = require("./suffix"); company.adjetive = require("./adjetive"); company.descriptor = require("./descriptor"); @@ -30613,17 +40091,17 @@ company.bs_verb = require("./bs_verb"); company.bs_adjective = require("./bs_adjective"); company.bs_noun = require("./bs_noun"); company.name = require("./name"); -},{"./adjetive":617,"./bs_adjective":618,"./bs_noun":619,"./bs_verb":620,"./descriptor":621,"./name":623,"./noun":624,"./suffix":625}],623:[function(require,module,exports){ -module.exports=require(129) -},{"/Users/a/dev/faker.js/lib/locales/en/company/name.js":129}],624:[function(require,module,exports){ -module.exports=require(130) -},{"/Users/a/dev/faker.js/lib/locales/en/company/noun.js":130}],625:[function(require,module,exports){ -module.exports=require(131) -},{"/Users/a/dev/faker.js/lib/locales/en/company/suffix.js":131}],626:[function(require,module,exports){ +},{"./adjetive":657,"./bs_adjective":658,"./bs_noun":659,"./bs_verb":660,"./descriptor":661,"./name":663,"./noun":664,"./suffix":665}],663:[function(require,module,exports){ +module.exports=require(134) +},{"/Users/a/dev/faker.js/lib/locales/en/company/name.js":134}],664:[function(require,module,exports){ +module.exports=require(135) +},{"/Users/a/dev/faker.js/lib/locales/en/company/noun.js":135}],665:[function(require,module,exports){ +module.exports=require(136) +},{"/Users/a/dev/faker.js/lib/locales/en/company/suffix.js":136}],666:[function(require,module,exports){ var pl = {}; module['exports'] = pl; pl.title = "Polish"; pl.name = require("./name"); pl.address = require("./address"); @@ -30631,30 +40109,30 @@ pl.internet = require("./internet"); pl.lorem = require("./lorem"); pl.phone_number = require("./phone_number"); pl.cell_phone = require("./cell_phone"); -},{"./address":607,"./cell_phone":616,"./company":622,"./internet":629,"./lorem":630,"./name":634,"./phone_number":640}],627:[function(require,module,exports){ +},{"./address":647,"./cell_phone":656,"./company":662,"./internet":669,"./lorem":670,"./name":674,"./phone_number":680}],667:[function(require,module,exports){ module["exports"] = [ "com", "pl", "com.pl", "net", "org" ]; -},{}],628:[function(require,module,exports){ +},{}],668:[function(require,module,exports){ module.exports=require(36) -},{"/Users/a/dev/faker.js/lib/locales/de/internet/free_email.js":36}],629:[function(require,module,exports){ +},{"/Users/a/dev/faker.js/lib/locales/de/internet/free_email.js":36}],669:[function(require,module,exports){ arguments[4][37][0].apply(exports,arguments) -},{"./domain_suffix":627,"./free_email":628,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],630:[function(require,module,exports){ -module.exports=require(161) -},{"./supplemental":631,"./words":632,"/Users/a/dev/faker.js/lib/locales/en/lorem/index.js":161}],631:[function(require,module,exports){ -module.exports=require(162) -},{"/Users/a/dev/faker.js/lib/locales/en/lorem/supplemental.js":162}],632:[function(require,module,exports){ +},{"./domain_suffix":667,"./free_email":668,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],670:[function(require,module,exports){ +module.exports=require(167) +},{"./supplemental":671,"./words":672,"/Users/a/dev/faker.js/lib/locales/en/lorem/index.js":167}],671:[function(require,module,exports){ +module.exports=require(168) +},{"/Users/a/dev/faker.js/lib/locales/en/lorem/supplemental.js":168}],672:[function(require,module,exports){ module.exports=require(39) -},{"/Users/a/dev/faker.js/lib/locales/de/lorem/words.js":39}],633:[function(require,module,exports){ +},{"/Users/a/dev/faker.js/lib/locales/de/lorem/words.js":39}],673:[function(require,module,exports){ module["exports"] = [ "Aaron", "Abraham", "Adam", "Adrian", @@ -31063,13 +40541,13 @@ "Ksawera", "Ksenia", "Zoe" ]; -},{}],634:[function(require,module,exports){ -arguments[4][396][0].apply(exports,arguments) -},{"./first_name":633,"./last_name":635,"./name":636,"./prefix":637,"./title":638,"/Users/a/dev/faker.js/lib/locales/fr/name/index.js":396}],635:[function(require,module,exports){ +},{}],674:[function(require,module,exports){ +arguments[4][405][0].apply(exports,arguments) +},{"./first_name":673,"./last_name":675,"./name":676,"./prefix":677,"./title":678,"/Users/a/dev/faker.js/lib/locales/fr/name/index.js":405}],675:[function(require,module,exports){ module["exports"] = [ "Adamczak", "Adamczyk", "Adamek", "Adamiak", @@ -31773,21 +41251,21 @@ "Żurawski", "Żurek", "Żyła" ]; -},{}],636:[function(require,module,exports){ -module.exports=require(441) -},{"/Users/a/dev/faker.js/lib/locales/ge/name/name.js":441}],637:[function(require,module,exports){ +},{}],676:[function(require,module,exports){ +module.exports=require(450) +},{"/Users/a/dev/faker.js/lib/locales/ge/name/name.js":450}],677:[function(require,module,exports){ module["exports"] = [ "Pan", "Pani" ]; -},{}],638:[function(require,module,exports){ -module.exports=require(170) -},{"/Users/a/dev/faker.js/lib/locales/en/name/title.js":170}],639:[function(require,module,exports){ +},{}],678:[function(require,module,exports){ +module.exports=require(176) +},{"/Users/a/dev/faker.js/lib/locales/en/name/title.js":176}],679:[function(require,module,exports){ module["exports"] = [ "12-###-##-##", "13-###-##-##", "14-###-##-##", "15-###-##-##", @@ -31836,32 +41314,32 @@ "91-###-##-##", "94-###-##-##", "95-###-##-##" ]; -},{}],640:[function(require,module,exports){ +},{}],680:[function(require,module,exports){ arguments[4][47][0].apply(exports,arguments) -},{"./formats":639,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],641:[function(require,module,exports){ -module.exports=require(91) -},{"/Users/a/dev/faker.js/lib/locales/en/address/building_number.js":91}],642:[function(require,module,exports){ +},{"./formats":679,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],681:[function(require,module,exports){ +module.exports=require(96) +},{"/Users/a/dev/faker.js/lib/locales/en/address/building_number.js":96}],682:[function(require,module,exports){ module["exports"] = [ "Nova", "Velha", "Grande", "Vila", "Município de" ]; -},{}],643:[function(require,module,exports){ +},{}],683:[function(require,module,exports){ module["exports"] = [ "do Descoberto", "de Nossa Senhora", "do Norte", "do Sul" ]; -},{}],644:[function(require,module,exports){ +},{}],684:[function(require,module,exports){ module["exports"] = [ "Afeganistão", "Albânia", "Algéria", "Samoa", @@ -32098,16 +41576,16 @@ "Yemen", "Zâmbia", "Zimbábue" ]; -},{}],645:[function(require,module,exports){ +},{}],685:[function(require,module,exports){ module["exports"] = [ "Brasil" ]; -},{}],646:[function(require,module,exports){ +},{}],686:[function(require,module,exports){ var address = {}; module['exports'] = address; address.city_prefix = require("./city_prefix"); address.city_suffix = require("./city_suffix"); address.country = require("./country"); @@ -32117,26 +41595,26 @@ address.postcode = require("./postcode"); address.state = require("./state"); address.state_abbr = require("./state_abbr"); address.default_country = require("./default_country"); -},{"./building_number":641,"./city_prefix":642,"./city_suffix":643,"./country":644,"./default_country":645,"./postcode":647,"./secondary_address":648,"./state":649,"./state_abbr":650,"./street_suffix":651}],647:[function(require,module,exports){ +},{"./building_number":681,"./city_prefix":682,"./city_suffix":683,"./country":684,"./default_country":685,"./postcode":687,"./secondary_address":688,"./state":689,"./state_abbr":690,"./street_suffix":691}],687:[function(require,module,exports){ module["exports"] = [ "#####", "#####-###" ]; -},{}],648:[function(require,module,exports){ +},{}],688:[function(require,module,exports){ module["exports"] = [ "Apto. ###", "Sobrado ##", "Casa #", "Lote ##", "Quadra ##" ]; -},{}],649:[function(require,module,exports){ +},{}],689:[function(require,module,exports){ module["exports"] = [ "Acre", "Alagoas", "Amapá", "Amazonas", @@ -32163,11 +41641,11 @@ "São Paulo", "Sergipe", "Tocantins" ]; -},{}],650:[function(require,module,exports){ +},{}],690:[function(require,module,exports){ module["exports"] = [ "AC", "AL", "AP", "AM", @@ -32191,11 +41669,11 @@ "RR", "SC", "SP" ]; -},{}],651:[function(require,module,exports){ +},{}],691:[function(require,module,exports){ module["exports"] = [ "Rua", "Avenida", "Travessa", "Ponte", @@ -32203,65 +41681,65 @@ "Marginal", "Viela", "Rodovia" ]; -},{}],652:[function(require,module,exports){ +},{}],692:[function(require,module,exports){ arguments[4][83][0].apply(exports,arguments) -},{"./name":653,"./suffix":654,"/Users/a/dev/faker.js/lib/locales/de_CH/company/index.js":83}],653:[function(require,module,exports){ +},{"./name":693,"./suffix":694,"/Users/a/dev/faker.js/lib/locales/de_CH/company/index.js":83}],693:[function(require,module,exports){ module["exports"] = [ "#{Name.last_name} #{suffix}", "#{Name.last_name}-#{Name.last_name}", "#{Name.last_name}, #{Name.last_name} e #{Name.last_name}" ]; -},{}],654:[function(require,module,exports){ +},{}],694:[function(require,module,exports){ module["exports"] = [ "S.A.", "LTDA", "e Associados", "Comércio" ]; -},{}],655:[function(require,module,exports){ +},{}],695:[function(require,module,exports){ var pt_BR = {}; module['exports'] = pt_BR; pt_BR.title = "Portuguese (Brazil)"; pt_BR.address = require("./address"); pt_BR.company = require("./company"); pt_BR.internet = require("./internet"); pt_BR.lorem = require("./lorem"); pt_BR.name = require("./name"); pt_BR.phone_number = require("./phone_number"); -},{"./address":646,"./company":652,"./internet":658,"./lorem":659,"./name":662,"./phone_number":667}],656:[function(require,module,exports){ +},{"./address":686,"./company":692,"./internet":698,"./lorem":699,"./name":702,"./phone_number":707}],696:[function(require,module,exports){ module["exports"] = [ "br", "com", "biz", "info", "name", "net", "org" ]; -},{}],657:[function(require,module,exports){ +},{}],697:[function(require,module,exports){ module["exports"] = [ "gmail.com", "yahoo.com", "hotmail.com", "live.com", "bol.com.br" ]; -},{}],658:[function(require,module,exports){ +},{}],698:[function(require,module,exports){ arguments[4][37][0].apply(exports,arguments) -},{"./domain_suffix":656,"./free_email":657,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],659:[function(require,module,exports){ +},{"./domain_suffix":696,"./free_email":697,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],699:[function(require,module,exports){ module.exports=require(38) -},{"./words":660,"/Users/a/dev/faker.js/lib/locales/de/lorem/index.js":38}],660:[function(require,module,exports){ +},{"./words":700,"/Users/a/dev/faker.js/lib/locales/de/lorem/index.js":38}],700:[function(require,module,exports){ module.exports=require(39) -},{"/Users/a/dev/faker.js/lib/locales/de/lorem/words.js":39}],661:[function(require,module,exports){ +},{"/Users/a/dev/faker.js/lib/locales/de/lorem/words.js":39}],701:[function(require,module,exports){ module["exports"] = [ "Alessandro", "Alessandra", "Alexandre", "Aline", @@ -32352,19 +41830,19 @@ "Yuri", "Washington", "Warley" ]; -},{}],662:[function(require,module,exports){ +},{}],702:[function(require,module,exports){ var name = {}; module['exports'] = name; name.first_name = require("./first_name"); name.last_name = require("./last_name"); name.prefix = require("./prefix"); name.suffix = require("./suffix"); -},{"./first_name":661,"./last_name":663,"./prefix":664,"./suffix":665}],663:[function(require,module,exports){ +},{"./first_name":701,"./last_name":703,"./prefix":704,"./suffix":705}],703:[function(require,module,exports){ module["exports"] = [ "Silva", "Souza", "Carvalho", "Santos", @@ -32386,45 +41864,45 @@ "Martins", "Moreira", "Albuquerque" ]; -},{}],664:[function(require,module,exports){ +},{}],704:[function(require,module,exports){ module["exports"] = [ "Sr.", "Sra.", "Srta.", "Dr." ]; -},{}],665:[function(require,module,exports){ +},{}],705:[function(require,module,exports){ module["exports"] = [ "Jr.", "Neto", "Filho" ]; -},{}],666:[function(require,module,exports){ +},{}],706:[function(require,module,exports){ module["exports"] = [ "(##) ####-####", "+55 (##) ####-####", "(##) #####-####" ]; -},{}],667:[function(require,module,exports){ +},{}],707:[function(require,module,exports){ arguments[4][47][0].apply(exports,arguments) -},{"./formats":666,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],668:[function(require,module,exports){ +},{"./formats":706,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],708:[function(require,module,exports){ module["exports"] = [ "###" ]; -},{}],669:[function(require,module,exports){ +},{}],709:[function(require,module,exports){ module["exports"] = [ "#{Address.city_name}" ]; -},{}],670:[function(require,module,exports){ +},{}],710:[function(require,module,exports){ module["exports"] = [ "Москва", "Владимир", "Санкт-Петербург", "Новосибирск", @@ -32470,11 +41948,11 @@ "Ставрополь", "Белгород", "Сочи" ]; -},{}],671:[function(require,module,exports){ +},{}],711:[function(require,module,exports){ module["exports"] = [ "Австралия", "Австрия", "Азербайджан", "Албания", @@ -32684,16 +42162,16 @@ "Южно-Африканская Республика", "Ямайка", "Япония" ]; -},{}],672:[function(require,module,exports){ +},{}],712:[function(require,module,exports){ module["exports"] = [ "Россия" ]; -},{}],673:[function(require,module,exports){ +},{}],713:[function(require,module,exports){ var address = {}; module['exports'] = address; address.country = require("./country"); address.building_number = require("./building_number"); address.street_suffix = require("./street_suffix"); @@ -32705,21 +42183,21 @@ address.city = require("./city"); address.street_name = require("./street_name"); address.street_address = require("./street_address"); address.default_country = require("./default_country"); -},{"./building_number":668,"./city":669,"./city_name":670,"./country":671,"./default_country":672,"./postcode":674,"./secondary_address":675,"./state":676,"./street_address":677,"./street_name":678,"./street_suffix":679,"./street_title":680}],674:[function(require,module,exports){ +},{"./building_number":708,"./city":709,"./city_name":710,"./country":711,"./default_country":712,"./postcode":714,"./secondary_address":715,"./state":716,"./street_address":717,"./street_name":718,"./street_suffix":719,"./street_title":720}],714:[function(require,module,exports){ module["exports"] = [ "######" ]; -},{}],675:[function(require,module,exports){ +},{}],715:[function(require,module,exports){ module["exports"] = [ "кв. ###" ]; -},{}],676:[function(require,module,exports){ +},{}],716:[function(require,module,exports){ module["exports"] = [ "Республика Адыгея", "Республика Башкортостан", "Республика Бурятия", "Республика Алтай Республика Дагестан", @@ -32805,32 +42283,32 @@ "Эвенкийский автономный округ", "Ямало-Ненецкий автономный округ", "Чеченская Республика" ]; -},{}],677:[function(require,module,exports){ +},{}],717:[function(require,module,exports){ module["exports"] = [ "#{street_name}, #{building_number}" ]; -},{}],678:[function(require,module,exports){ +},{}],718:[function(require,module,exports){ module["exports"] = [ "#{street_suffix} #{Address.street_title}", "#{Address.street_title} #{street_suffix}" ]; -},{}],679:[function(require,module,exports){ +},{}],719:[function(require,module,exports){ module["exports"] = [ "ул.", "улица", "проспект", "пр.", "площадь", "пл." ]; -},{}],680:[function(require,module,exports){ +},{}],720:[function(require,module,exports){ module["exports"] = [ "Советская", "Молодежная", "Центральная", "Школьная", @@ -32931,11 +42409,11 @@ "Лесной", "40 лет Победы", "Майская" ]; -},{}],681:[function(require,module,exports){ +},{}],721:[function(require,module,exports){ module["exports"] = [ "красный", "зеленый", "синий", "желтый", @@ -32966,11 +42444,11 @@ "лазурный", "лиловый", "серебряный" ]; -},{}],682:[function(require,module,exports){ +},{}],722:[function(require,module,exports){ module["exports"] = [ "Книги", "Фильмы", "музыка", "игры", @@ -32991,13 +42469,13 @@ "туризм", "Автомобильное", "промышленное" ]; -},{}],683:[function(require,module,exports){ -arguments[4][121][0].apply(exports,arguments) -},{"./color":681,"./department":682,"./product_name":684,"/Users/a/dev/faker.js/lib/locales/en/commerce/index.js":121}],684:[function(require,module,exports){ +},{}],723:[function(require,module,exports){ +arguments[4][126][0].apply(exports,arguments) +},{"./color":721,"./department":722,"./product_name":724,"/Users/a/dev/faker.js/lib/locales/en/commerce/index.js":126}],724:[function(require,module,exports){ module["exports"] = { "adjective": [ "Маленький", "Эргономичный", "Грубый", @@ -33029,13 +42507,13 @@ "Ремень", "Ботинок" ] }; -},{}],685:[function(require,module,exports){ -arguments[4][430][0].apply(exports,arguments) -},{"./name":686,"./prefix":687,"./suffix":688,"/Users/a/dev/faker.js/lib/locales/ge/company/index.js":430}],686:[function(require,module,exports){ +},{}],725:[function(require,module,exports){ +arguments[4][439][0].apply(exports,arguments) +},{"./name":726,"./prefix":727,"./suffix":728,"/Users/a/dev/faker.js/lib/locales/ge/company/index.js":439}],726:[function(require,module,exports){ module["exports"] = [ "#{prefix} #{Name.female_first_name}", "#{prefix} #{Name.male_first_name}", "#{prefix} #{Name.male_last_name}", "#{prefix} #{suffix}#{suffix}", @@ -33043,33 +42521,33 @@ "#{prefix} #{Address.city_name}#{suffix}", "#{prefix} #{Address.city_name}#{suffix}#{suffix}", "#{prefix} #{Address.city_name}#{suffix}#{suffix}#{suffix}" ]; -},{}],687:[function(require,module,exports){ +},{}],727:[function(require,module,exports){ module["exports"] = [ "ИП", "ООО", "ЗАО", "ОАО", "НКО", "ТСЖ", "ОП" ]; -},{}],688:[function(require,module,exports){ +},{}],728:[function(require,module,exports){ module["exports"] = [ "Снаб", "Торг", "Пром", "Трейд", "Сбыт" ]; -},{}],689:[function(require,module,exports){ -arguments[4][143][0].apply(exports,arguments) -},{"./month":690,"./weekday":691,"/Users/a/dev/faker.js/lib/locales/en/date/index.js":143}],690:[function(require,module,exports){ +},{}],729:[function(require,module,exports){ +arguments[4][148][0].apply(exports,arguments) +},{"./month":730,"./weekday":731,"/Users/a/dev/faker.js/lib/locales/en/date/index.js":148}],730:[function(require,module,exports){ // source: http://unicode.org/cldr/trac/browser/tags/release-27/common/main/ru.xml#L1734 module["exports"] = { wide: [ "январь", "февраль", @@ -33126,11 +42604,11 @@ "нояб.", "дек." ] }; -},{}],691:[function(require,module,exports){ +},{}],731:[function(require,module,exports){ // source: http://unicode.org/cldr/trac/browser/tags/release-27/common/main/ru.xml#L1825 module["exports"] = { wide: [ "Воскресенье", "Понедельник", @@ -33167,11 +42645,11 @@ "пт", "сб" ] }; -},{}],692:[function(require,module,exports){ +},{}],732:[function(require,module,exports){ var ru = {}; module['exports'] = ru; ru.title = "Russian"; ru.separator = " и "; ru.address = require("./address"); @@ -33180,33 +42658,33 @@ ru.phone_number = require("./phone_number"); ru.commerce = require("./commerce"); ru.company = require("./company"); ru.date = require("./date"); -},{"./address":673,"./commerce":683,"./company":685,"./date":689,"./internet":695,"./name":699,"./phone_number":707}],693:[function(require,module,exports){ +},{"./address":713,"./commerce":723,"./company":725,"./date":729,"./internet":735,"./name":739,"./phone_number":747}],733:[function(require,module,exports){ module["exports"] = [ "com", "ru", "info", "рф", "net", "org" ]; -},{}],694:[function(require,module,exports){ +},{}],734:[function(require,module,exports){ module["exports"] = [ "yandex.ru", "ya.ru", "mail.ru", "gmail.com", "yahoo.com", "hotmail.com" ]; -},{}],695:[function(require,module,exports){ +},{}],735:[function(require,module,exports){ arguments[4][37][0].apply(exports,arguments) -},{"./domain_suffix":693,"./free_email":694,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],696:[function(require,module,exports){ +},{"./domain_suffix":733,"./free_email":734,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],736:[function(require,module,exports){ module["exports"] = [ "Анна", "Алёна", "Алевтина", "Александра", @@ -33262,11 +42740,11 @@ "Татьяна", "Ульяна", "Юлия" ]; -},{}],697:[function(require,module,exports){ +},{}],737:[function(require,module,exports){ module["exports"] = [ "Смирнова", "Иванова", "Кузнецова", "Попова", @@ -33516,11 +42994,11 @@ "Меркушева", "Лыткина", "Турова" ]; -},{}],698:[function(require,module,exports){ +},{}],738:[function(require,module,exports){ module["exports"] = [ "Александровна", "Алексеевна", "Альбертовна", "Анатольевна", @@ -33571,11 +43049,11 @@ "Эдуардовна", "Юрьевна", "Ярославовна" ]; -},{}],699:[function(require,module,exports){ +},{}],739:[function(require,module,exports){ var name = {}; module['exports'] = name; name.male_first_name = require("./male_first_name"); name.male_middle_name = require("./male_middle_name"); name.male_last_name = require("./male_last_name"); @@ -33584,11 +43062,11 @@ name.female_last_name = require("./female_last_name"); name.prefix = require("./prefix"); name.suffix = require("./suffix"); name.name = require("./name"); -},{"./female_first_name":696,"./female_last_name":697,"./female_middle_name":698,"./male_first_name":700,"./male_last_name":701,"./male_middle_name":702,"./name":703,"./prefix":704,"./suffix":705}],700:[function(require,module,exports){ +},{"./female_first_name":736,"./female_last_name":737,"./female_middle_name":738,"./male_first_name":740,"./male_last_name":741,"./male_middle_name":742,"./name":743,"./prefix":744,"./suffix":745}],740:[function(require,module,exports){ module["exports"] = [ "Александр", "Алексей", "Альберт", "Анатолий", @@ -33640,11 +43118,11 @@ "Эдуард", "Юрий", "Ярослав" ]; -},{}],701:[function(require,module,exports){ +},{}],741:[function(require,module,exports){ module["exports"] = [ "Смирнов", "Иванов", "Кузнецов", "Попов", @@ -33894,11 +43372,11 @@ "Меркушев", "Лыткин", "Туров" ]; -},{}],702:[function(require,module,exports){ +},{}],742:[function(require,module,exports){ module["exports"] = [ "Александрович", "Алексеевич", "Альбертович", "Анатольевич", @@ -33950,11 +43428,11 @@ "Эдуардович", "Юрьевич", "Ярославович" ]; -},{}],703:[function(require,module,exports){ +},{}],743:[function(require,module,exports){ module["exports"] = [ "#{male_first_name} #{male_last_name}", "#{male_last_name} #{male_first_name}", "#{male_first_name} #{male_middle_name} #{male_last_name}", "#{male_last_name} #{male_first_name} #{male_middle_name}", @@ -33962,31 +43440,31 @@ "#{female_last_name} #{female_first_name}", "#{female_first_name} #{female_middle_name} #{female_last_name}", "#{female_last_name} #{female_first_name} #{female_middle_name}" ]; -},{}],704:[function(require,module,exports){ -module.exports=require(478) -},{"/Users/a/dev/faker.js/lib/locales/it/name/suffix.js":478}],705:[function(require,module,exports){ -module.exports=require(478) -},{"/Users/a/dev/faker.js/lib/locales/it/name/suffix.js":478}],706:[function(require,module,exports){ +},{}],744:[function(require,module,exports){ +module.exports=require(518) +},{"/Users/a/dev/faker.js/lib/locales/it/name/suffix.js":518}],745:[function(require,module,exports){ +module.exports=require(518) +},{"/Users/a/dev/faker.js/lib/locales/it/name/suffix.js":518}],746:[function(require,module,exports){ module["exports"] = [ "(9##)###-##-##" ]; -},{}],707:[function(require,module,exports){ +},{}],747:[function(require,module,exports){ arguments[4][47][0].apply(exports,arguments) -},{"./formats":706,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],708:[function(require,module,exports){ +},{"./formats":746,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],748:[function(require,module,exports){ module["exports"] = [ "#", "##", "###" ]; -},{}],709:[function(require,module,exports){ +},{}],749:[function(require,module,exports){ module.exports=require(49) -},{"/Users/a/dev/faker.js/lib/locales/de_AT/address/city.js":49}],710:[function(require,module,exports){ +},{"/Users/a/dev/faker.js/lib/locales/de_AT/address/city.js":49}],750:[function(require,module,exports){ module["exports"] = [ "Bánovce nad Bebravou", "Banská Bystrica", "Banská Štiavnica", "Bardejov", @@ -34065,15 +43543,15 @@ "Žilina", "Zlaté Moravce", "Zvolen" ]; -},{}],711:[function(require,module,exports){ -module.exports=require(93) -},{"/Users/a/dev/faker.js/lib/locales/en/address/city_prefix.js":93}],712:[function(require,module,exports){ -module.exports=require(94) -},{"/Users/a/dev/faker.js/lib/locales/en/address/city_suffix.js":94}],713:[function(require,module,exports){ +},{}],751:[function(require,module,exports){ +module.exports=require(98) +},{"/Users/a/dev/faker.js/lib/locales/en/address/city_prefix.js":98}],752:[function(require,module,exports){ +module.exports=require(99) +},{"/Users/a/dev/faker.js/lib/locales/en/address/city_suffix.js":99}],753:[function(require,module,exports){ module["exports"] = [ "Afganistan", "Afgánsky islamský štát", "Albánsko", "Albánska republika", @@ -34455,16 +43933,16 @@ "Zambijská republika", "Zimbabwe", "Zimbabwianska republika" ]; -},{}],714:[function(require,module,exports){ +},{}],754:[function(require,module,exports){ module["exports"] = [ "Slovensko" ]; -},{}],715:[function(require,module,exports){ +},{}],755:[function(require,module,exports){ var address = {}; module['exports'] = address; address.city_prefix = require("./city_prefix"); address.city_suffix = require("./city_suffix"); address.country = require("./country"); @@ -34479,24 +43957,24 @@ address.street = require("./street"); address.street_name = require("./street_name"); address.street_address = require("./street_address"); address.default_country = require("./default_country"); -},{"./building_number":708,"./city":709,"./city_name":710,"./city_prefix":711,"./city_suffix":712,"./country":713,"./default_country":714,"./postcode":716,"./secondary_address":717,"./state":718,"./state_abbr":719,"./street":720,"./street_address":721,"./street_name":722,"./time_zone":723}],716:[function(require,module,exports){ +},{"./building_number":748,"./city":749,"./city_name":750,"./city_prefix":751,"./city_suffix":752,"./country":753,"./default_country":754,"./postcode":756,"./secondary_address":757,"./state":758,"./state_abbr":759,"./street":760,"./street_address":761,"./street_name":762,"./time_zone":763}],756:[function(require,module,exports){ module["exports"] = [ "#####", "### ##", "## ###" ]; -},{}],717:[function(require,module,exports){ -module.exports=require(102) -},{"/Users/a/dev/faker.js/lib/locales/en/address/secondary_address.js":102}],718:[function(require,module,exports){ -module.exports=require(478) -},{"/Users/a/dev/faker.js/lib/locales/it/name/suffix.js":478}],719:[function(require,module,exports){ -module.exports=require(478) -},{"/Users/a/dev/faker.js/lib/locales/it/name/suffix.js":478}],720:[function(require,module,exports){ +},{}],757:[function(require,module,exports){ +module.exports=require(107) +},{"/Users/a/dev/faker.js/lib/locales/en/address/secondary_address.js":107}],758:[function(require,module,exports){ +module.exports=require(518) +},{"/Users/a/dev/faker.js/lib/locales/it/name/suffix.js":518}],759:[function(require,module,exports){ +module.exports=require(518) +},{"/Users/a/dev/faker.js/lib/locales/it/name/suffix.js":518}],760:[function(require,module,exports){ module["exports"] = [ "Adámiho", "Ahoj", "Albína Brunovského", "Albrechtova", @@ -35656,22 +45134,22 @@ "Živnostenská", "Žižkova", "Župné námestie" ]; -},{}],721:[function(require,module,exports){ +},{}],761:[function(require,module,exports){ module.exports=require(25) -},{"/Users/a/dev/faker.js/lib/locales/de/address/street_address.js":25}],722:[function(require,module,exports){ +},{"/Users/a/dev/faker.js/lib/locales/de/address/street_address.js":25}],762:[function(require,module,exports){ module["exports"] = [ "#{street}" ]; -},{}],723:[function(require,module,exports){ -module.exports=require(108) -},{"/Users/a/dev/faker.js/lib/locales/en/address/time_zone.js":108}],724:[function(require,module,exports){ -module.exports=require(123) -},{"/Users/a/dev/faker.js/lib/locales/en/company/adjective.js":123}],725:[function(require,module,exports){ +},{}],763:[function(require,module,exports){ +module.exports=require(113) +},{"/Users/a/dev/faker.js/lib/locales/en/address/time_zone.js":113}],764:[function(require,module,exports){ +module.exports=require(128) +},{"/Users/a/dev/faker.js/lib/locales/en/company/adjective.js":128}],765:[function(require,module,exports){ module["exports"] = [ "clicks-and-mortar", "value-added", "vertical", "proactive", @@ -35780,89 +45258,548 @@ "experiences", "web services", "methodologies" ]; -},{}],726:[function(require,module,exports){ -module.exports=require(126) -},{"/Users/a/dev/faker.js/lib/locales/en/company/bs_verb.js":126}],727:[function(require,module,exports){ -module.exports=require(127) -},{"/Users/a/dev/faker.js/lib/locales/en/company/descriptor.js":127}],728:[function(require,module,exports){ +},{}],766:[function(require,module,exports){ +module.exports=require(131) +},{"/Users/a/dev/faker.js/lib/locales/en/company/bs_verb.js":131}],767:[function(require,module,exports){ +module.exports=require(132) +},{"/Users/a/dev/faker.js/lib/locales/en/company/descriptor.js":132}],768:[function(require,module,exports){ var company = {}; module['exports'] = company; company.suffix = require("./suffix"); company.adjective = require("./adjective"); company.descriptor = require("./descriptor"); company.noun = require("./noun"); company.bs_verb = require("./bs_verb"); company.bs_noun = require("./bs_noun"); company.name = require("./name"); -},{"./adjective":724,"./bs_noun":725,"./bs_verb":726,"./descriptor":727,"./name":729,"./noun":730,"./suffix":731}],729:[function(require,module,exports){ +},{"./adjective":764,"./bs_noun":765,"./bs_verb":766,"./descriptor":767,"./name":769,"./noun":770,"./suffix":771}],769:[function(require,module,exports){ module["exports"] = [ "#{Name.last_name} #{suffix}", "#{Name.last_name} #{suffix}", "#{Name.man_last_name} a #{Name.man_last_name} #{suffix}" ]; -},{}],730:[function(require,module,exports){ -module.exports=require(130) -},{"/Users/a/dev/faker.js/lib/locales/en/company/noun.js":130}],731:[function(require,module,exports){ +},{}],770:[function(require,module,exports){ +module.exports=require(135) +},{"/Users/a/dev/faker.js/lib/locales/en/company/noun.js":135}],771:[function(require,module,exports){ module["exports"] = [ "s.r.o.", "a.s.", "v.o.s." ]; -},{}],732:[function(require,module,exports){ +},{}],772:[function(require,module,exports){ var sk = {}; module['exports'] = sk; sk.title = "Slovakian"; sk.address = require("./address"); sk.company = require("./company"); sk.internet = require("./internet"); sk.lorem = require("./lorem"); sk.name = require("./name"); sk.phone_number = require("./phone_number"); -},{"./address":715,"./company":728,"./internet":735,"./lorem":736,"./name":739,"./phone_number":749}],733:[function(require,module,exports){ +},{"./address":755,"./company":768,"./internet":775,"./lorem":776,"./name":781,"./phone_number":789}],773:[function(require,module,exports){ module["exports"] = [ "sk", "com", "net", "eu", "org" ]; -},{}],734:[function(require,module,exports){ +},{}],774:[function(require,module,exports){ module["exports"] = [ "gmail.com", "zoznam.sk", "azet.sk" ]; -},{}],735:[function(require,module,exports){ +},{}],775:[function(require,module,exports){ arguments[4][37][0].apply(exports,arguments) -},{"./domain_suffix":733,"./free_email":734,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],736:[function(require,module,exports){ -module.exports=require(161) -},{"./supplemental":737,"./words":738,"/Users/a/dev/faker.js/lib/locales/en/lorem/index.js":161}],737:[function(require,module,exports){ -module.exports=require(162) -},{"/Users/a/dev/faker.js/lib/locales/en/lorem/supplemental.js":162}],738:[function(require,module,exports){ +},{"./domain_suffix":773,"./free_email":774,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],776:[function(require,module,exports){ +module.exports=require(167) +},{"./supplemental":777,"./words":778,"/Users/a/dev/faker.js/lib/locales/en/lorem/index.js":167}],777:[function(require,module,exports){ +module.exports=require(168) +},{"/Users/a/dev/faker.js/lib/locales/en/lorem/supplemental.js":168}],778:[function(require,module,exports){ module.exports=require(39) -},{"/Users/a/dev/faker.js/lib/locales/de/lorem/words.js":39}],739:[function(require,module,exports){ +},{"/Users/a/dev/faker.js/lib/locales/de/lorem/words.js":39}],779:[function(require,module,exports){ +module["exports"] = [ + "Alexandra", + "Karina", + "Daniela", + "Andrea", + "Antónia", + "Bohuslava", + "Dáša", + "Malvína", + "Kristína", + "Nataša", + "Bohdana", + "Drahomíra", + "Sára", + "Zora", + "Tamara", + "Ema", + "Tatiana", + "Erika", + "Veronika", + "Agáta", + "Dorota", + "Vanda", + "Zoja", + "Gabriela", + "Perla", + "Ida", + "Liana", + "Miloslava", + "Vlasta", + "Lívia", + "Eleonóra", + "Etela", + "Romana", + "Zlatica", + "Anežka", + "Bohumila", + "Františka", + "Angela", + "Matilda", + "Svetlana", + "Ľubica", + "Alena", + "Soňa", + "Vieroslava", + "Zita", + "Miroslava", + "Irena", + "Milena", + "Estera", + "Justína", + "Dana", + "Danica", + "Jela", + "Jaroslava", + "Jarmila", + "Lea", + "Anastázia", + "Galina", + "Lesana", + "Hermína", + "Monika", + "Ingrida", + "Viktória", + "Blažena", + "Žofia", + "Sofia", + "Gizela", + "Viola", + "Gertrúda", + "Zina", + "Júlia", + "Juliana", + "Želmíra", + "Ela", + "Vanesa", + "Iveta", + "Vilma", + "Petronela", + "Žaneta", + "Xénia", + "Karolína", + "Lenka", + "Laura", + "Stanislava", + "Margaréta", + "Dobroslava", + "Blanka", + "Valéria", + "Paulína", + "Sidónia", + "Adriána", + "Beáta", + "Petra", + "Melánia", + "Diana", + "Berta", + "Patrícia", + "Lujza", + "Amália", + "Milota", + "Nina", + "Margita", + "Kamila", + "Dušana", + "Magdaléna", + "Oľga", + "Anna", + "Hana", + "Božena", + "Marta", + "Libuša", + "Božidara", + "Dominika", + "Hortenzia", + "Jozefína", + "Štefánia", + "Ľubomíra", + "Zuzana", + "Darina", + "Marcela", + "Milica", + "Elena", + "Helena", + "Lýdia", + "Anabela", + "Jana", + "Silvia", + "Nikola", + "Ružena", + "Nora", + "Drahoslava", + "Linda", + "Melinda", + "Rebeka", + "Rozália", + "Regína", + "Alica", + "Marianna", + "Miriama", + "Martina", + "Mária", + "Jolana", + "Ľudomila", + "Ľudmila", + "Olympia", + "Eugénia", + "Ľuboslava", + "Zdenka", + "Edita", + "Michaela", + "Stela", + "Viera", + "Natália", + "Eliška", + "Brigita", + "Valentína", + "Terézia", + "Vladimíra", + "Hedviga", + "Uršuľa", + "Alojza", + "Kvetoslava", + "Sabína", + "Dobromila", + "Klára", + "Simona", + "Aurélia", + "Denisa", + "Renáta", + "Irma", + "Agnesa", + "Klaudia", + "Alžbeta", + "Elvíra", + "Cecília", + "Emília", + "Katarína", + "Henrieta", + "Bibiána", + "Barbora", + "Marína", + "Izabela", + "Hilda", + "Otília", + "Lucia", + "Branislava", + "Bronislava", + "Ivica", + "Albína", + "Kornélia", + "Sláva", + "Slávka", + "Judita", + "Dagmara", + "Adela", + "Nadežda", + "Eva", + "Filoména", + "Ivana", + "Milada" +]; + +},{}],780:[function(require,module,exports){ +module["exports"] = [ + "Antalová", + "Babková", + "Bahnová", + "Balážová", + "Baranová", + "Baranková", + "Bartovičová", + "Bartošová", + "Bačová", + "Bernoláková", + "Beňová", + "Biceková", + "Bieliková", + "Blahová", + "Bondrová", + "Bosáková", + "Bošková", + "Brezinová", + "Bukovská", + "Chalupková", + "Chudíková", + "Cibulová", + "Cibulková", + "Cyprichová", + "Cígerová", + "Danková", + "Daňková", + "Daňová", + "Debnárová", + "Dejová", + "Dekýšová", + "Doležalová", + "Dočolomanská", + "Droppová", + "Dubovská", + "Dudeková", + "Dulová", + "Dullová", + "Dusíková", + "Dvončová", + "Dzurjaninová", + "Dávidová", + "Fabianová", + "Fabiánová", + "Fajnorová", + "Farkašovská", + "Ficová", + "Filcová", + "Filipová", + "Finková", + "Ftoreková", + "Gašparová", + "Gašparovičová", + "Gocníková", + "Gregorová", + "Gregušová", + "Grznárová", + "Habláková", + "Habšudová", + "Haldová", + "Halušková", + "Haláková", + "Hanková", + "Hanzalová", + "Haščáková", + "Heretiková", + "Hečková", + "Hlaváčeková", + "Hlinková", + "Holubová", + "Holubyová", + "Hossová", + "Hozová", + "Hrašková", + "Hricová", + "Hrmová", + "Hrušovská", + "Hubová", + "Ihnačáková", + "Janečeková", + "Janošková", + "Jantošovičová", + "Janíková", + "Jančeková", + "Jedľovská", + "Jendeková", + "Jonatová", + "Jurinová", + "Jurkovičová", + "Juríková", + "Jánošíková", + "Kafendová", + "Kaliská", + "Karulová", + "Kenížová", + "Klapková", + "Kmeťová", + "Kolesárová", + "Kollárová", + "Kolniková", + "Kolníková", + "Kolárová", + "Korecová", + "Kostkaová", + "Kostrecová", + "Kováčová", + "Kováčiková", + "Kozová", + "Kočišová", + "Krajíčeková", + "Krajčová", + "Krajčovičová", + "Krajčírová", + "Králiková", + "Krúpová", + "Kubíková", + "Kyseľová", + "Kállayová", + "Labudová", + "Lepšíková", + "Liptáková", + "Lisická", + "Lubinová", + "Lukáčová", + "Luptáková", + "Líšková", + "Madejová", + "Majeská", + "Malachovská", + "Malíšeková", + "Mamojková", + "Marcinková", + "Mariánová", + "Masaryková", + "Maslová", + "Matiašková", + "Medveďová", + "Melcerová", + "Mečiarová", + "Michalíková", + "Mihaliková", + "Mihálová", + "Miháliková", + "Miklošková", + "Mikulíková", + "Mikušová", + "Mikúšová", + "Milotová", + "Mináčová", + "Mišíková", + "Mojžišová", + "Mokrošová", + "Morová", + "Moravčíková", + "Mydlová", + "Nemcová", + "Nováková", + "Obšutová", + "Ondrušová", + "Otčenášová", + "Pauková", + "Pavlikovská", + "Pavúková", + "Pašeková", + "Pašková", + "Pelikánová", + "Petrovická", + "Petrušková", + "Pešková", + "Plchová", + "Plekanecová", + "Podhradská", + "Podkonická", + "Poliaková", + "Pupáková", + "Raková", + "Repiská", + "Romančíková", + "Rusová", + "Ružičková", + "Rybníčeková", + "Rybárová", + "Rybáriková", + "Samsonová", + "Sedliaková", + "Senková", + "Sklenková", + "Skokanová", + "Skutecká", + "Slašťanová", + "Slobodová", + "Slobodníková", + "Slotová", + "Slováková", + "Smreková", + "Stodolová", + "Straková", + "Strnisková", + "Svrbíková", + "Sámelová", + "Sýkorová", + "Tatarová", + "Tatarková", + "Tatárová", + "Tatárkaová", + "Thomková", + "Tomečeková", + "Tomková", + "Trubenová", + "Turčoková", + "Uramová", + "Urblíková", + "Vajcíková", + "Vajdová", + "Valachová", + "Valachovičová", + "Valentová", + "Valušková", + "Vaneková", + "Veselová", + "Vicenová", + "Višňovská", + "Vlachová", + "Vojteková", + "Vydarená", + "Zajacová", + "Zimová", + "Zimková", + "Záborská", + "Zúbriková", + "Čapkovičová", + "Čaplovičová", + "Čarnogurská", + "Čierná", + "Čobrdová", + "Ďaďová", + "Ďuricová", + "Ďurišová", + "Šidlová", + "Šimonovičová", + "Škriniarová", + "Škultétyová", + "Šmajdová", + "Šoltésová", + "Šoltýsová", + "Štefanová", + "Štefanková", + "Šulcová", + "Šurková", + "Švehlová", + "Šťastná" +]; + +},{}],781:[function(require,module,exports){ var name = {}; module['exports'] = name; -name.man_first_name = require("./man_first_name"); -name.woman_first_name = require("./woman_first_name"); -name.man_last_name = require("./man_last_name"); -name.woman_last_name = require("./woman_last_name"); +name.male_first_name = require("./male_first_name"); +name.female_first_name = require("./female_first_name"); +name.male_last_name = require("./male_last_name"); +name.female_last_name = require("./female_last_name"); name.prefix = require("./prefix"); name.suffix = require("./suffix"); name.title = require("./title"); name.name = require("./name"); -},{"./man_first_name":740,"./man_last_name":741,"./name":742,"./prefix":743,"./suffix":744,"./title":745,"./woman_first_name":746,"./woman_last_name":747}],740:[function(require,module,exports){ +},{"./female_first_name":779,"./female_last_name":780,"./male_first_name":782,"./male_last_name":783,"./name":784,"./prefix":785,"./suffix":786,"./title":787}],782:[function(require,module,exports){ module["exports"] = [ "Drahoslav", "Severín", "Alexej", "Ernest", @@ -36054,11 +45991,11 @@ "Štefan", "Dávid", "Silvester" ]; -},{}],741:[function(require,module,exports){ +},{}],783:[function(require,module,exports){ module["exports"] = [ "Antal", "Babka", "Bahna", "Bahno", @@ -36315,11 +46252,11 @@ "Šurka", "Švehla", "Šťastný" ]; -},{}],742:[function(require,module,exports){ +},{}],784:[function(require,module,exports){ module["exports"] = [ "#{prefix} #{man_first_name} #{man_last_name}", "#{prefix} #{woman_first_name} #{woman_last_name}", "#{man_first_name} #{man_last_name} #{suffix}", "#{woman_first_name} #{woman_last_name} #{suffix}", @@ -36329,502 +46266,43 @@ "#{woman_first_name} #{woman_last_name}", "#{woman_first_name} #{woman_last_name}", "#{woman_first_name} #{woman_last_name}" ]; -},{}],743:[function(require,module,exports){ +},{}],785:[function(require,module,exports){ module["exports"] = [ "Ing.", "Mgr.", "JUDr.", "MUDr." ]; -},{}],744:[function(require,module,exports){ +},{}],786:[function(require,module,exports){ module["exports"] = [ "Phd." ]; -},{}],745:[function(require,module,exports){ -module.exports=require(170) -},{"/Users/a/dev/faker.js/lib/locales/en/name/title.js":170}],746:[function(require,module,exports){ +},{}],787:[function(require,module,exports){ +module.exports=require(176) +},{"/Users/a/dev/faker.js/lib/locales/en/name/title.js":176}],788:[function(require,module,exports){ module["exports"] = [ - "Alexandra", - "Karina", - "Daniela", - "Andrea", - "Antónia", - "Bohuslava", - "Dáša", - "Malvína", - "Kristína", - "Nataša", - "Bohdana", - "Drahomíra", - "Sára", - "Zora", - "Tamara", - "Ema", - "Tatiana", - "Erika", - "Veronika", - "Agáta", - "Dorota", - "Vanda", - "Zoja", - "Gabriela", - "Perla", - "Ida", - "Liana", - "Miloslava", - "Vlasta", - "Lívia", - "Eleonóra", - "Etela", - "Romana", - "Zlatica", - "Anežka", - "Bohumila", - "Františka", - "Angela", - "Matilda", - "Svetlana", - "Ľubica", - "Alena", - "Soňa", - "Vieroslava", - "Zita", - "Miroslava", - "Irena", - "Milena", - "Estera", - "Justína", - "Dana", - "Danica", - "Jela", - "Jaroslava", - "Jarmila", - "Lea", - "Anastázia", - "Galina", - "Lesana", - "Hermína", - "Monika", - "Ingrida", - "Viktória", - "Blažena", - "Žofia", - "Sofia", - "Gizela", - "Viola", - "Gertrúda", - "Zina", - "Júlia", - "Juliana", - "Želmíra", - "Ela", - "Vanesa", - "Iveta", - "Vilma", - "Petronela", - "Žaneta", - "Xénia", - "Karolína", - "Lenka", - "Laura", - "Stanislava", - "Margaréta", - "Dobroslava", - "Blanka", - "Valéria", - "Paulína", - "Sidónia", - "Adriána", - "Beáta", - "Petra", - "Melánia", - "Diana", - "Berta", - "Patrícia", - "Lujza", - "Amália", - "Milota", - "Nina", - "Margita", - "Kamila", - "Dušana", - "Magdaléna", - "Oľga", - "Anna", - "Hana", - "Božena", - "Marta", - "Libuša", - "Božidara", - "Dominika", - "Hortenzia", - "Jozefína", - "Štefánia", - "Ľubomíra", - "Zuzana", - "Darina", - "Marcela", - "Milica", - "Elena", - "Helena", - "Lýdia", - "Anabela", - "Jana", - "Silvia", - "Nikola", - "Ružena", - "Nora", - "Drahoslava", - "Linda", - "Melinda", - "Rebeka", - "Rozália", - "Regína", - "Alica", - "Marianna", - "Miriama", - "Martina", - "Mária", - "Jolana", - "Ľudomila", - "Ľudmila", - "Olympia", - "Eugénia", - "Ľuboslava", - "Zdenka", - "Edita", - "Michaela", - "Stela", - "Viera", - "Natália", - "Eliška", - "Brigita", - "Valentína", - "Terézia", - "Vladimíra", - "Hedviga", - "Uršuľa", - "Alojza", - "Kvetoslava", - "Sabína", - "Dobromila", - "Klára", - "Simona", - "Aurélia", - "Denisa", - "Renáta", - "Irma", - "Agnesa", - "Klaudia", - "Alžbeta", - "Elvíra", - "Cecília", - "Emília", - "Katarína", - "Henrieta", - "Bibiána", - "Barbora", - "Marína", - "Izabela", - "Hilda", - "Otília", - "Lucia", - "Branislava", - "Bronislava", - "Ivica", - "Albína", - "Kornélia", - "Sláva", - "Slávka", - "Judita", - "Dagmara", - "Adela", - "Nadežda", - "Eva", - "Filoména", - "Ivana", - "Milada" -]; - -},{}],747:[function(require,module,exports){ -module["exports"] = [ - "Antalová", - "Babková", - "Bahnová", - "Balážová", - "Baranová", - "Baranková", - "Bartovičová", - "Bartošová", - "Bačová", - "Bernoláková", - "Beňová", - "Biceková", - "Bieliková", - "Blahová", - "Bondrová", - "Bosáková", - "Bošková", - "Brezinová", - "Bukovská", - "Chalupková", - "Chudíková", - "Cibulová", - "Cibulková", - "Cyprichová", - "Cígerová", - "Danková", - "Daňková", - "Daňová", - "Debnárová", - "Dejová", - "Dekýšová", - "Doležalová", - "Dočolomanská", - "Droppová", - "Dubovská", - "Dudeková", - "Dulová", - "Dullová", - "Dusíková", - "Dvončová", - "Dzurjaninová", - "Dávidová", - "Fabianová", - "Fabiánová", - "Fajnorová", - "Farkašovská", - "Ficová", - "Filcová", - "Filipová", - "Finková", - "Ftoreková", - "Gašparová", - "Gašparovičová", - "Gocníková", - "Gregorová", - "Gregušová", - "Grznárová", - "Habláková", - "Habšudová", - "Haldová", - "Halušková", - "Haláková", - "Hanková", - "Hanzalová", - "Haščáková", - "Heretiková", - "Hečková", - "Hlaváčeková", - "Hlinková", - "Holubová", - "Holubyová", - "Hossová", - "Hozová", - "Hrašková", - "Hricová", - "Hrmová", - "Hrušovská", - "Hubová", - "Ihnačáková", - "Janečeková", - "Janošková", - "Jantošovičová", - "Janíková", - "Jančeková", - "Jedľovská", - "Jendeková", - "Jonatová", - "Jurinová", - "Jurkovičová", - "Juríková", - "Jánošíková", - "Kafendová", - "Kaliská", - "Karulová", - "Kenížová", - "Klapková", - "Kmeťová", - "Kolesárová", - "Kollárová", - "Kolniková", - "Kolníková", - "Kolárová", - "Korecová", - "Kostkaová", - "Kostrecová", - "Kováčová", - "Kováčiková", - "Kozová", - "Kočišová", - "Krajíčeková", - "Krajčová", - "Krajčovičová", - "Krajčírová", - "Králiková", - "Krúpová", - "Kubíková", - "Kyseľová", - "Kállayová", - "Labudová", - "Lepšíková", - "Liptáková", - "Lisická", - "Lubinová", - "Lukáčová", - "Luptáková", - "Líšková", - "Madejová", - "Majeská", - "Malachovská", - "Malíšeková", - "Mamojková", - "Marcinková", - "Mariánová", - "Masaryková", - "Maslová", - "Matiašková", - "Medveďová", - "Melcerová", - "Mečiarová", - "Michalíková", - "Mihaliková", - "Mihálová", - "Miháliková", - "Miklošková", - "Mikulíková", - "Mikušová", - "Mikúšová", - "Milotová", - "Mináčová", - "Mišíková", - "Mojžišová", - "Mokrošová", - "Morová", - "Moravčíková", - "Mydlová", - "Nemcová", - "Nováková", - "Obšutová", - "Ondrušová", - "Otčenášová", - "Pauková", - "Pavlikovská", - "Pavúková", - "Pašeková", - "Pašková", - "Pelikánová", - "Petrovická", - "Petrušková", - "Pešková", - "Plchová", - "Plekanecová", - "Podhradská", - "Podkonická", - "Poliaková", - "Pupáková", - "Raková", - "Repiská", - "Romančíková", - "Rusová", - "Ružičková", - "Rybníčeková", - "Rybárová", - "Rybáriková", - "Samsonová", - "Sedliaková", - "Senková", - "Sklenková", - "Skokanová", - "Skutecká", - "Slašťanová", - "Slobodová", - "Slobodníková", - "Slotová", - "Slováková", - "Smreková", - "Stodolová", - "Straková", - "Strnisková", - "Svrbíková", - "Sámelová", - "Sýkorová", - "Tatarová", - "Tatarková", - "Tatárová", - "Tatárkaová", - "Thomková", - "Tomečeková", - "Tomková", - "Trubenová", - "Turčoková", - "Uramová", - "Urblíková", - "Vajcíková", - "Vajdová", - "Valachová", - "Valachovičová", - "Valentová", - "Valušková", - "Vaneková", - "Veselová", - "Vicenová", - "Višňovská", - "Vlachová", - "Vojteková", - "Vydarená", - "Zajacová", - "Zimová", - "Zimková", - "Záborská", - "Zúbriková", - "Čapkovičová", - "Čaplovičová", - "Čarnogurská", - "Čierná", - "Čobrdová", - "Ďaďová", - "Ďuricová", - "Ďurišová", - "Šidlová", - "Šimonovičová", - "Škriniarová", - "Škultétyová", - "Šmajdová", - "Šoltésová", - "Šoltýsová", - "Štefanová", - "Štefanková", - "Šulcová", - "Šurková", - "Švehlová", - "Šťastná" -]; - -},{}],748:[function(require,module,exports){ -module["exports"] = [ "09## ### ###", "0## #### ####", "0# #### ####", "+421 ### ### ###" ]; -},{}],749:[function(require,module,exports){ +},{}],789:[function(require,module,exports){ arguments[4][47][0].apply(exports,arguments) -},{"./formats":748,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],750:[function(require,module,exports){ -module.exports=require(414) -},{"/Users/a/dev/faker.js/lib/locales/ge/address/building_number.js":414}],751:[function(require,module,exports){ +},{"./formats":788,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],790:[function(require,module,exports){ +module.exports=require(423) +},{"/Users/a/dev/faker.js/lib/locales/ge/address/building_number.js":423}],791:[function(require,module,exports){ module["exports"] = [ "#{city_prefix}#{city_suffix}" ]; -},{}],752:[function(require,module,exports){ +},{}],792:[function(require,module,exports){ module["exports"] = [ "Söder", "Norr", "Väst", "Öster", @@ -36849,11 +46327,11 @@ "Kö", "Lyck", "Ny" ]; -},{}],753:[function(require,module,exports){ +},{}],793:[function(require,module,exports){ module["exports"] = [ "stad", "land", "sås", "ås", @@ -36872,17 +46350,17 @@ "torp", "fred", "vik" ]; -},{}],754:[function(require,module,exports){ +},{}],794:[function(require,module,exports){ module["exports"] = [ "s Väg", "s Gata" ]; -},{}],755:[function(require,module,exports){ +},{}],795:[function(require,module,exports){ module["exports"] = [ "Ryssland", "Kanada", "Kina", "USA", @@ -37087,16 +46565,16 @@ "Nauru", "Monaco", "Vatikanstaten" ]; -},{}],756:[function(require,module,exports){ +},{}],796:[function(require,module,exports){ module["exports"] = [ "Sverige" ]; -},{}],757:[function(require,module,exports){ +},{}],797:[function(require,module,exports){ var address = {}; module['exports'] = address; address.city_prefix = require("./city_prefix"); address.city_suffix = require("./city_suffix"); address.country = require("./country"); @@ -37111,19 +46589,19 @@ address.building_number = require("./building_number"); address.secondary_address = require("./secondary_address"); address.street_address = require("./street_address"); address.default_country = require("./default_country"); -},{"./building_number":750,"./city":751,"./city_prefix":752,"./city_suffix":753,"./common_street_suffix":754,"./country":755,"./default_country":756,"./postcode":758,"./secondary_address":759,"./state":760,"./street_address":761,"./street_name":762,"./street_prefix":763,"./street_root":764,"./street_suffix":765}],758:[function(require,module,exports){ -module.exports=require(282) -},{"/Users/a/dev/faker.js/lib/locales/es/address/postcode.js":282}],759:[function(require,module,exports){ +},{"./building_number":790,"./city":791,"./city_prefix":792,"./city_suffix":793,"./common_street_suffix":794,"./country":795,"./default_country":796,"./postcode":798,"./secondary_address":799,"./state":800,"./street_address":801,"./street_name":802,"./street_prefix":803,"./street_root":804,"./street_suffix":805}],798:[function(require,module,exports){ +module.exports=require(291) +},{"/Users/a/dev/faker.js/lib/locales/es/address/postcode.js":291}],799:[function(require,module,exports){ module["exports"] = [ "Lgh. ###", "Hus ###" ]; -},{}],760:[function(require,module,exports){ +},{}],800:[function(require,module,exports){ module["exports"] = [ "Blekinge", "Dalarna", "Gotland", "Gävleborg", @@ -37146,25 +46624,25 @@ "Älvsborg", "Örebro", "Östergötland" ]; -},{}],761:[function(require,module,exports){ +},{}],801:[function(require,module,exports){ module.exports=require(25) -},{"/Users/a/dev/faker.js/lib/locales/de/address/street_address.js":25}],762:[function(require,module,exports){ -module.exports=require(535) -},{"/Users/a/dev/faker.js/lib/locales/nb_NO/address/street_name.js":535}],763:[function(require,module,exports){ +},{"/Users/a/dev/faker.js/lib/locales/de/address/street_address.js":25}],802:[function(require,module,exports){ +module.exports=require(575) +},{"/Users/a/dev/faker.js/lib/locales/nb_NO/address/street_name.js":575}],803:[function(require,module,exports){ module["exports"] = [ "Västra", "Östra", "Norra", "Södra", "Övre", "Undre" ]; -},{}],764:[function(require,module,exports){ +},{}],804:[function(require,module,exports){ module["exports"] = [ "Björk", "Järnvägs", "Ring", "Skol", @@ -37192,38 +46670,38 @@ "Åker", "Bäck", "Asp" ]; -},{}],765:[function(require,module,exports){ +},{}],805:[function(require,module,exports){ module["exports"] = [ "vägen", "gatan", "gränden", "gärdet", "allén" ]; -},{}],766:[function(require,module,exports){ +},{}],806:[function(require,module,exports){ module["exports"] = [ 56, 62, 59 ]; -},{}],767:[function(require,module,exports){ +},{}],807:[function(require,module,exports){ module["exports"] = [ "#{common_cell_prefix}-###-####" ]; -},{}],768:[function(require,module,exports){ +},{}],808:[function(require,module,exports){ var cell_phone = {}; module['exports'] = cell_phone; cell_phone.common_cell_prefix = require("./common_cell_prefix"); cell_phone.formats = require("./formats"); -},{"./common_cell_prefix":766,"./formats":767}],769:[function(require,module,exports){ +},{"./common_cell_prefix":806,"./formats":807}],809:[function(require,module,exports){ module["exports"] = [ "vit", "silver", "grå", "svart", @@ -37238,11 +46716,11 @@ "rosa", "purpur", "korall" ]; -},{}],770:[function(require,module,exports){ +},{}],810:[function(require,module,exports){ module["exports"] = [ "Böcker", "Filmer", "Musik", "Spel", @@ -37259,13 +46737,13 @@ "Skor", "Smycken", "Sport" ]; -},{}],771:[function(require,module,exports){ -arguments[4][121][0].apply(exports,arguments) -},{"./color":769,"./department":770,"./product_name":772,"/Users/a/dev/faker.js/lib/locales/en/commerce/index.js":121}],772:[function(require,module,exports){ +},{}],811:[function(require,module,exports){ +arguments[4][126][0].apply(exports,arguments) +},{"./color":809,"./department":810,"./product_name":812,"/Users/a/dev/faker.js/lib/locales/en/commerce/index.js":126}],812:[function(require,module,exports){ module["exports"] = { "adjective": [ "Liten", "Ergonomisk", "Robust", @@ -37299,31 +46777,89 @@ "Shoes", "Hat" ] }; -},{}],773:[function(require,module,exports){ +},{}],813:[function(require,module,exports){ arguments[4][83][0].apply(exports,arguments) -},{"./name":774,"./suffix":775,"/Users/a/dev/faker.js/lib/locales/de_CH/company/index.js":83}],774:[function(require,module,exports){ +},{"./name":814,"./suffix":815,"/Users/a/dev/faker.js/lib/locales/de_CH/company/index.js":83}],814:[function(require,module,exports){ module["exports"] = [ "#{Name.last_name} #{suffix}", "#{Name.last_name}-#{Name.last_name}", "#{Name.last_name}, #{Name.last_name} #{suffix}" ]; -},{}],775:[function(require,module,exports){ +},{}],815:[function(require,module,exports){ module["exports"] = [ "Gruppen", "AB", "HB", "Group", "Investment", "Kommanditbolag", "Aktiebolag" ]; -},{}],776:[function(require,module,exports){ +},{}],816:[function(require,module,exports){ +arguments[4][148][0].apply(exports,arguments) +},{"./month":817,"./weekday":818,"/Users/a/dev/faker.js/lib/locales/en/date/index.js":148}],817:[function(require,module,exports){ +// Source: http://unicode.org/cldr/trac/browser/tags/release-27/common/main/en.xml#L1799 +module["exports"] = { + wide: [ + "januari", + "februari", + "mars", + "april", + "maj", + "juni", + "juli", + "augusti", + "september", + "oktober", + "november", + "december" + ], + abbr: [ + "jan", + "feb", + "mar", + "apr", + "maj", + "jun", + "jul", + "aug", + "sep", + "okt", + "nov", + "dec" + ] +}; + +},{}],818:[function(require,module,exports){ +// Source: http://unicode.org/cldr/trac/browser/tags/release-27/common/main/en.xml#L1847 +module["exports"] = { + wide: [ + "söndag", + "måndag", + "tisdag", + "onsdag", + "torsdag", + "fredag", + "lördag" + ], + abbr: [ + "sön", + "mån", + "tis", + "ons", + "tor", + "fre", + "lör" + ] +}; + +},{}],819:[function(require,module,exports){ var sv = {}; module['exports'] = sv; sv.title = "Swedish"; sv.address = require("./address"); sv.company = require("./company"); @@ -37331,23 +46867,24 @@ sv.name = require("./name"); sv.phone_number = require("./phone_number"); sv.cell_phone = require("./cell_phone"); sv.commerce = require("./commerce"); sv.team = require("./team"); +sv.date = require("./date"); -},{"./address":757,"./cell_phone":768,"./commerce":771,"./company":773,"./internet":778,"./name":781,"./phone_number":787,"./team":788}],777:[function(require,module,exports){ +},{"./address":797,"./cell_phone":808,"./commerce":811,"./company":813,"./date":816,"./internet":821,"./name":824,"./phone_number":830,"./team":831}],820:[function(require,module,exports){ module["exports"] = [ "se", "nu", "info", "com", "org" ]; -},{}],778:[function(require,module,exports){ +},{}],821:[function(require,module,exports){ arguments[4][88][0].apply(exports,arguments) -},{"./domain_suffix":777,"/Users/a/dev/faker.js/lib/locales/de_CH/internet/index.js":88}],779:[function(require,module,exports){ +},{"./domain_suffix":820,"/Users/a/dev/faker.js/lib/locales/de_CH/internet/index.js":88}],822:[function(require,module,exports){ module["exports"] = [ "Erik", "Lars", "Karl", "Anders", @@ -37357,11 +46894,11 @@ "Lennart", "Emil", "Hans" ]; -},{}],780:[function(require,module,exports){ +},{}],823:[function(require,module,exports){ module["exports"] = [ "Maria", "Anna", "Margareta", "Elisabeth", @@ -37371,21 +46908,21 @@ "Karin", "Elisabet", "Marie" ]; -},{}],781:[function(require,module,exports){ +},{}],824:[function(require,module,exports){ var name = {}; module['exports'] = name; name.first_name_women = require("./first_name_women"); name.first_name_men = require("./first_name_men"); name.last_name = require("./last_name"); name.prefix = require("./prefix"); name.title = require("./title"); name.name = require("./name"); -},{"./first_name_men":779,"./first_name_women":780,"./last_name":782,"./name":783,"./prefix":784,"./title":785}],782:[function(require,module,exports){ +},{"./first_name_men":822,"./first_name_women":823,"./last_name":825,"./name":826,"./prefix":827,"./title":828}],825:[function(require,module,exports){ module["exports"] = [ "Johansson", "Andersson", "Karlsson", "Nilsson", @@ -37395,11 +46932,11 @@ "Persson", "Svensson", "Gustafsson" ]; -},{}],783:[function(require,module,exports){ +},{}],826:[function(require,module,exports){ module["exports"] = [ "#{first_name_women} #{last_name}", "#{first_name_men} #{last_name}", "#{first_name_women} #{last_name}", "#{first_name_men} #{last_name}", @@ -37407,39 +46944,39 @@ "#{first_name_men} #{last_name}", "#{prefix} #{first_name_men} #{last_name}", "#{prefix} #{first_name_women} #{last_name}" ]; -},{}],784:[function(require,module,exports){ +},{}],827:[function(require,module,exports){ module["exports"] = [ "Dr.", "Prof.", "PhD." ]; -},{}],785:[function(require,module,exports){ -module.exports=require(170) -},{"/Users/a/dev/faker.js/lib/locales/en/name/title.js":170}],786:[function(require,module,exports){ +},{}],828:[function(require,module,exports){ +module.exports=require(176) +},{"/Users/a/dev/faker.js/lib/locales/en/name/title.js":176}],829:[function(require,module,exports){ module["exports"] = [ "####-#####", "####-######" ]; -},{}],787:[function(require,module,exports){ +},{}],830:[function(require,module,exports){ arguments[4][47][0].apply(exports,arguments) -},{"./formats":786,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],788:[function(require,module,exports){ +},{"./formats":829,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],831:[function(require,module,exports){ var team = {}; module['exports'] = team; team.suffix = require("./suffix"); team.name = require("./name"); -},{"./name":789,"./suffix":790}],789:[function(require,module,exports){ +},{"./name":832,"./suffix":833}],832:[function(require,module,exports){ module["exports"] = [ "#{Address.city} #{suffix}" ]; -},{}],790:[function(require,module,exports){ +},{}],833:[function(require,module,exports){ module["exports"] = [ "IF", "FF", "BK", "HK", @@ -37452,13 +46989,13 @@ "BIS", "FIF", "IK" ]; -},{}],791:[function(require,module,exports){ +},{}],834:[function(require,module,exports){ module.exports=require(14) -},{"/Users/a/dev/faker.js/lib/locales/de/address/building_number.js":14}],792:[function(require,module,exports){ +},{"/Users/a/dev/faker.js/lib/locales/de/address/building_number.js":14}],835:[function(require,module,exports){ module["exports"] = [ "Adana", "Adıyaman", "Afyon", "Ağrı", @@ -37539,11 +47076,11 @@ "Kilis", "Osmaniye", "Düzce" ]; -},{}],793:[function(require,module,exports){ +},{}],836:[function(require,module,exports){ module["exports"] = [ "Afganistan", "Almanya", "Amerika Birleşik Devletleri", "Amerikan Samoa", @@ -37779,16 +47316,16 @@ "Yunanistan", "Zambiya", "Zimbabve" ]; -},{}],794:[function(require,module,exports){ +},{}],837:[function(require,module,exports){ module["exports"] = [ "Türkiye" ]; -},{}],795:[function(require,module,exports){ +},{}],838:[function(require,module,exports){ var address = {}; module['exports'] = address; address.city = require("./city"); address.street_root = require("./street_root"); address.country = require("./country"); @@ -37796,17 +47333,17 @@ address.default_country = require("./default_country"); address.building_number = require("./building_number"); address.street_name = require("./street_name"); address.street_address = require("./street_address"); -},{"./building_number":791,"./city":792,"./country":793,"./default_country":794,"./postcode":796,"./street_address":797,"./street_name":798,"./street_root":799}],796:[function(require,module,exports){ -module.exports=require(282) -},{"/Users/a/dev/faker.js/lib/locales/es/address/postcode.js":282}],797:[function(require,module,exports){ +},{"./building_number":834,"./city":835,"./country":836,"./default_country":837,"./postcode":839,"./street_address":840,"./street_name":841,"./street_root":842}],839:[function(require,module,exports){ +module.exports=require(291) +},{"/Users/a/dev/faker.js/lib/locales/es/address/postcode.js":291}],840:[function(require,module,exports){ module.exports=require(25) -},{"/Users/a/dev/faker.js/lib/locales/de/address/street_address.js":25}],798:[function(require,module,exports){ +},{"/Users/a/dev/faker.js/lib/locales/de/address/street_address.js":25}],841:[function(require,module,exports){ module.exports=require(26) -},{"/Users/a/dev/faker.js/lib/locales/de/address/street_name.js":26}],799:[function(require,module,exports){ +},{"/Users/a/dev/faker.js/lib/locales/de/address/street_name.js":26}],842:[function(require,module,exports){ module["exports"] = [ "Atatürk Bulvarı", "Alparslan Türkeş Bulvarı", "Ali Çetinkaya Caddesi", "Tevfik Fikret Caddesi", @@ -37847,48 +47384,48 @@ "Kerimoğlu Sokak", "Nalbant Sokak", "Bandak Sokak" ]; -},{}],800:[function(require,module,exports){ +},{}],843:[function(require,module,exports){ module["exports"] = [ "+90-53#-###-##-##", "+90-54#-###-##-##", "+90-55#-###-##-##", "+90-50#-###-##-##" ]; -},{}],801:[function(require,module,exports){ +},{}],844:[function(require,module,exports){ arguments[4][29][0].apply(exports,arguments) -},{"./formats":800,"/Users/a/dev/faker.js/lib/locales/de/cell_phone/index.js":29}],802:[function(require,module,exports){ +},{"./formats":843,"/Users/a/dev/faker.js/lib/locales/de/cell_phone/index.js":29}],845:[function(require,module,exports){ var tr = {}; module['exports'] = tr; tr.title = "Turkish"; tr.address = require("./address"); tr.internet = require("./internet"); tr.lorem = require("./lorem"); tr.phone_number = require("./phone_number"); tr.cell_phone = require("./cell_phone"); tr.name = require("./name"); -},{"./address":795,"./cell_phone":801,"./internet":804,"./lorem":805,"./name":808,"./phone_number":814}],803:[function(require,module,exports){ +},{"./address":838,"./cell_phone":844,"./internet":847,"./lorem":848,"./name":851,"./phone_number":857}],846:[function(require,module,exports){ module["exports"] = [ "com.tr", "com", "biz", "info", "name", "gov.tr" ]; -},{}],804:[function(require,module,exports){ +},{}],847:[function(require,module,exports){ arguments[4][88][0].apply(exports,arguments) -},{"./domain_suffix":803,"/Users/a/dev/faker.js/lib/locales/de_CH/internet/index.js":88}],805:[function(require,module,exports){ +},{"./domain_suffix":846,"/Users/a/dev/faker.js/lib/locales/de_CH/internet/index.js":88}],848:[function(require,module,exports){ module.exports=require(38) -},{"./words":806,"/Users/a/dev/faker.js/lib/locales/de/lorem/index.js":38}],806:[function(require,module,exports){ +},{"./words":849,"/Users/a/dev/faker.js/lib/locales/de/lorem/index.js":38}],849:[function(require,module,exports){ module.exports=require(39) -},{"/Users/a/dev/faker.js/lib/locales/de/lorem/words.js":39}],807:[function(require,module,exports){ +},{"/Users/a/dev/faker.js/lib/locales/de/lorem/words.js":39}],850:[function(require,module,exports){ module["exports"] = [ "Aba", "Abak", "Abaka", "Abakan", @@ -38619,19 +48156,13 @@ "Kıvılcım", "Kızdurmuş", "Kızılalma" ]; -},{}],808:[function(require,module,exports){ -var name = {}; -module['exports'] = name; -name.first_name = require("./first_name"); -name.last_name = require("./last_name"); -name.prefix = require("./prefix"); -name.name = require("./name"); - -},{"./first_name":807,"./last_name":809,"./name":810,"./prefix":811}],809:[function(require,module,exports){ +},{}],851:[function(require,module,exports){ +arguments[4][90][0].apply(exports,arguments) +},{"./first_name":850,"./last_name":852,"./name":853,"./prefix":854,"/Users/a/dev/faker.js/lib/locales/de_CH/name/index.js":90}],852:[function(require,module,exports){ module["exports"] = [ "Abacı", "Abadan", "Aclan", "Adal", @@ -38829,21 +48360,21 @@ "Özkök ", "Öztonga", "Öztuna" ]; -},{}],810:[function(require,module,exports){ -module.exports=require(441) -},{"/Users/a/dev/faker.js/lib/locales/ge/name/name.js":441}],811:[function(require,module,exports){ +},{}],853:[function(require,module,exports){ +module.exports=require(450) +},{"/Users/a/dev/faker.js/lib/locales/ge/name/name.js":450}],854:[function(require,module,exports){ module["exports"] = [ "Bay", "Bayan", "Dr.", "Prof. Dr." ]; -},{}],812:[function(require,module,exports){ +},{}],855:[function(require,module,exports){ module["exports"] = [ "392", "510", "512", "522", @@ -38940,31 +48471,31 @@ "226", "354", "372" ]; -},{}],813:[function(require,module,exports){ +},{}],856:[function(require,module,exports){ module["exports"] = [ "+90-###-###-##-##", "+90-###-###-#-###" ]; -},{}],814:[function(require,module,exports){ +},{}],857:[function(require,module,exports){ var phone_number = {}; module['exports'] = phone_number; phone_number.area_code = require("./area_code"); phone_number.formats = require("./formats"); -},{"./area_code":812,"./formats":813}],815:[function(require,module,exports){ -module.exports=require(708) -},{"/Users/a/dev/faker.js/lib/locales/sk/address/building_number.js":708}],816:[function(require,module,exports){ +},{"./area_code":855,"./formats":856}],858:[function(require,module,exports){ +module.exports=require(748) +},{"/Users/a/dev/faker.js/lib/locales/sk/address/building_number.js":748}],859:[function(require,module,exports){ module["exports"] = [ "#{city_name}", "#{city_prefix} #{Name.male_first_name}" ]; -},{}],817:[function(require,module,exports){ +},{}],860:[function(require,module,exports){ module["exports"] = [ "Алчевськ", "Артемівськ", "Бердичів", "Бердянськ", @@ -39021,24 +48552,24 @@ "Чернігів", "Шостка", "Ялта" ]; -},{}],818:[function(require,module,exports){ +},{}],861:[function(require,module,exports){ module["exports"] = [ "Південний", "Північний", "Східний", "Західний" ]; -},{}],819:[function(require,module,exports){ +},{}],862:[function(require,module,exports){ module["exports"] = [ "град" ]; -},{}],820:[function(require,module,exports){ +},{}],863:[function(require,module,exports){ module["exports"] = [ "Австралія", "Австрія", "Азербайджан", "Албанія", @@ -39231,16 +48762,16 @@ "Шрі-Ланка", "Ямайка", "Японія" ]; -},{}],821:[function(require,module,exports){ +},{}],864:[function(require,module,exports){ module["exports"] = [ "Україна" ]; -},{}],822:[function(require,module,exports){ +},{}],865:[function(require,module,exports){ var address = {}; module['exports'] = address; address.country = require("./country"); address.building_number = require("./building_number"); address.street_prefix = require("./street_prefix"); @@ -39255,15 +48786,15 @@ address.city_suffix = require("./city_suffix"); address.street_name = require("./street_name"); address.street_address = require("./street_address"); address.default_country = require("./default_country"); -},{"./building_number":815,"./city":816,"./city_name":817,"./city_prefix":818,"./city_suffix":819,"./country":820,"./default_country":821,"./postcode":823,"./secondary_address":824,"./state":825,"./street_address":826,"./street_name":827,"./street_prefix":828,"./street_suffix":829,"./street_title":830}],823:[function(require,module,exports){ -module.exports=require(282) -},{"/Users/a/dev/faker.js/lib/locales/es/address/postcode.js":282}],824:[function(require,module,exports){ -module.exports=require(675) -},{"/Users/a/dev/faker.js/lib/locales/ru/address/secondary_address.js":675}],825:[function(require,module,exports){ +},{"./building_number":858,"./city":859,"./city_name":860,"./city_prefix":861,"./city_suffix":862,"./country":863,"./default_country":864,"./postcode":866,"./secondary_address":867,"./state":868,"./street_address":869,"./street_name":870,"./street_prefix":871,"./street_suffix":872,"./street_title":873}],866:[function(require,module,exports){ +module.exports=require(291) +},{"/Users/a/dev/faker.js/lib/locales/es/address/postcode.js":291}],867:[function(require,module,exports){ +module.exports=require(715) +},{"/Users/a/dev/faker.js/lib/locales/ru/address/secondary_address.js":715}],868:[function(require,module,exports){ module["exports"] = [ "АР Крим", "Вінницька область", "Волинська область", "Дніпропетровська область", @@ -39290,19 +48821,19 @@ "Чернігівська область", "Київ", "Севастополь" ]; -},{}],826:[function(require,module,exports){ -module.exports=require(677) -},{"/Users/a/dev/faker.js/lib/locales/ru/address/street_address.js":677}],827:[function(require,module,exports){ +},{}],869:[function(require,module,exports){ +module.exports=require(717) +},{"/Users/a/dev/faker.js/lib/locales/ru/address/street_address.js":717}],870:[function(require,module,exports){ module["exports"] = [ "#{street_prefix} #{Address.street_title}", "#{Address.street_title} #{street_suffix}" ]; -},{}],828:[function(require,module,exports){ +},{}],871:[function(require,module,exports){ module["exports"] = [ "вул.", "вулиця", "пр.", "проспект", @@ -39310,16 +48841,16 @@ "площа", "пров.", "провулок" ]; -},{}],829:[function(require,module,exports){ +},{}],872:[function(require,module,exports){ module["exports"] = [ "майдан" ]; -},{}],830:[function(require,module,exports){ +},{}],873:[function(require,module,exports){ module["exports"] = [ "Зелена", "Молодіжна", "Городоцька", "Стрийська", @@ -39332,15 +48863,15 @@ "Винників", "Рудного", "Коліївщини" ]; -},{}],831:[function(require,module,exports){ -arguments[4][430][0].apply(exports,arguments) -},{"./name":832,"./prefix":833,"./suffix":834,"/Users/a/dev/faker.js/lib/locales/ge/company/index.js":430}],832:[function(require,module,exports){ -module.exports=require(686) -},{"/Users/a/dev/faker.js/lib/locales/ru/company/name.js":686}],833:[function(require,module,exports){ +},{}],874:[function(require,module,exports){ +arguments[4][439][0].apply(exports,arguments) +},{"./name":875,"./prefix":876,"./suffix":877,"/Users/a/dev/faker.js/lib/locales/ge/company/index.js":439}],875:[function(require,module,exports){ +module.exports=require(726) +},{"/Users/a/dev/faker.js/lib/locales/ru/company/name.js":726}],876:[function(require,module,exports){ module["exports"] = [ "ТОВ", "ПАТ", "ПрАТ", "ТДВ", @@ -39348,30 +48879,30 @@ "ПТ", "ДП", "ФОП" ]; -},{}],834:[function(require,module,exports){ +},{}],877:[function(require,module,exports){ module["exports"] = [ "Постач", "Торг", "Пром", "Трейд", "Збут" ]; -},{}],835:[function(require,module,exports){ +},{}],878:[function(require,module,exports){ var uk = {}; module['exports'] = uk; uk.title = "Ukrainian"; uk.address = require("./address"); uk.company = require("./company"); uk.internet = require("./internet"); uk.name = require("./name"); uk.phone_number = require("./phone_number"); -},{"./address":822,"./company":831,"./internet":838,"./name":842,"./phone_number":851}],836:[function(require,module,exports){ +},{"./address":865,"./company":874,"./internet":881,"./name":885,"./phone_number":894}],879:[function(require,module,exports){ module["exports"] = [ "cherkassy.ua", "cherkasy.ua", "ck.ua", "cn.ua", @@ -39431,24 +48962,24 @@ "zp.ua", "zt.ua", "укр" ]; -},{}],837:[function(require,module,exports){ +},{}],880:[function(require,module,exports){ module["exports"] = [ "ukr.net", "ex.ua", "e-mail.ua", "i.ua", "meta.ua", "yandex.ua", "gmail.com" ]; -},{}],838:[function(require,module,exports){ +},{}],881:[function(require,module,exports){ arguments[4][37][0].apply(exports,arguments) -},{"./domain_suffix":836,"./free_email":837,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],839:[function(require,module,exports){ +},{"./domain_suffix":879,"./free_email":880,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],882:[function(require,module,exports){ module["exports"] = [ "Аврелія", "Аврора", "Агапія", "Агата", @@ -39641,11 +49172,11 @@ "Яна", "Ярина", "Ярослава" ]; -},{}],840:[function(require,module,exports){ +},{}],883:[function(require,module,exports){ module["exports"] = [ "Андрухович", "Бабух", "Балабан", "Балабуха", @@ -39875,11 +49406,11 @@ "Яцишина", "Яцьків", "Ящук" ]; -},{}],841:[function(require,module,exports){ +},{}],884:[function(require,module,exports){ module["exports"] = [ "Адамівна", "Азарівна", "Алевтинівна", "Альбертівна", @@ -39995,11 +49526,11 @@ "Юріївна", "Юхимівна", "Ярославівна" ]; -},{}],842:[function(require,module,exports){ +},{}],885:[function(require,module,exports){ var name = {}; module['exports'] = name; name.male_first_name = require("./male_first_name"); name.male_middle_name = require("./male_middle_name"); name.male_last_name = require("./male_last_name"); @@ -40009,11 +49540,11 @@ name.prefix = require("./prefix"); name.suffix = require("./suffix"); name.title = require("./title"); name.name = require("./name"); -},{"./female_first_name":839,"./female_last_name":840,"./female_middle_name":841,"./male_first_name":843,"./male_last_name":844,"./male_middle_name":845,"./name":846,"./prefix":847,"./suffix":848,"./title":849}],843:[function(require,module,exports){ +},{"./female_first_name":882,"./female_last_name":883,"./female_middle_name":884,"./male_first_name":886,"./male_last_name":887,"./male_middle_name":888,"./name":889,"./prefix":890,"./suffix":891,"./title":892}],886:[function(require,module,exports){ module["exports"] = [ "Августин", "Аврелій", "Адам", "Адріян", @@ -40208,11 +49739,11 @@ "Яромир", "Ярополк", "Ярослав" ]; -},{}],844:[function(require,module,exports){ +},{}],887:[function(require,module,exports){ module["exports"] = [ "Андрухович", "Бабух", "Балабан", "Балабух", @@ -40451,11 +49982,11 @@ "Яцишин", "Яцьків", "Ящук" ]; -},{}],845:[function(require,module,exports){ +},{}],888:[function(require,module,exports){ module["exports"] = [ "Адамович", "Азарович", "Алевтинович", "Альбертович", @@ -40571,19 +50102,19 @@ "Юрійович", "Юхимович", "Ярославович" ]; -},{}],846:[function(require,module,exports){ -module.exports=require(703) -},{"/Users/a/dev/faker.js/lib/locales/ru/name/name.js":703}],847:[function(require,module,exports){ +},{}],889:[function(require,module,exports){ +module.exports=require(743) +},{"/Users/a/dev/faker.js/lib/locales/ru/name/name.js":743}],890:[function(require,module,exports){ module["exports"] = [ "Пан", "Пані" ]; -},{}],848:[function(require,module,exports){ +},{}],891:[function(require,module,exports){ module["exports"] = [ "проф.", "доц.", "докт. пед. наук", "докт. політ. наук", @@ -40601,11 +50132,11 @@ "канд. юрид. наук", "канд. техн. наук", "канд. психол. наук" ]; -},{}],849:[function(require,module,exports){ +},{}],892:[function(require,module,exports){ module["exports"] = { "descriptor": [ "Головний", "Генеральний", "Провідний", @@ -40643,11 +50174,11 @@ "співробітник", "технік" ] }; -},{}],850:[function(require,module,exports){ +},{}],893:[function(require,module,exports){ module["exports"] = [ "(044) ###-##-##", "(050) ###-##-##", "(063) ###-##-##", "(066) ###-##-##", @@ -40661,18 +50192,18 @@ "(097) ###-##-##", "(098) ###-##-##", "(099) ###-##-##" ]; -},{}],851:[function(require,module,exports){ +},{}],894:[function(require,module,exports){ arguments[4][47][0].apply(exports,arguments) -},{"./formats":850,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],852:[function(require,module,exports){ +},{"./formats":893,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],895:[function(require,module,exports){ module["exports"] = [ "#{city_root}" ]; -},{}],853:[function(require,module,exports){ +},{}],896:[function(require,module,exports){ module["exports"] = [ "Bắc Giang", "Bắc Kạn", "Bắc Ninh", "Cao Bằng", @@ -40735,11 +50266,11 @@ "Tiền Giang", "Trà Vinh", "Vĩnh Long" ]; -},{}],854:[function(require,module,exports){ +},{}],897:[function(require,module,exports){ module["exports"] = [ "Avon", "Bedfordshire", "Berkshire", "Borders", @@ -40810,49 +50341,49 @@ "West Yorkshire", "Wiltshire", "Worcestershire" ]; -},{}],855:[function(require,module,exports){ +},{}],898:[function(require,module,exports){ module["exports"] = [ "Việt Nam" ]; -},{}],856:[function(require,module,exports){ +},{}],899:[function(require,module,exports){ var address = {}; module['exports'] = address; address.city_root = require("./city_root"); address.city = require("./city"); address.county = require("./county"); address.default_country = require("./default_country"); -},{"./city":852,"./city_root":853,"./county":854,"./default_country":855}],857:[function(require,module,exports){ -module.exports=require(211) -},{"/Users/a/dev/faker.js/lib/locales/en_GB/cell_phone/formats.js":211}],858:[function(require,module,exports){ +},{"./city":895,"./city_root":896,"./county":897,"./default_country":898}],900:[function(require,module,exports){ +module.exports=require(220) +},{"/Users/a/dev/faker.js/lib/locales/en_GB/cell_phone/formats.js":220}],901:[function(require,module,exports){ arguments[4][29][0].apply(exports,arguments) -},{"./formats":857,"/Users/a/dev/faker.js/lib/locales/de/cell_phone/index.js":29}],859:[function(require,module,exports){ +},{"./formats":900,"/Users/a/dev/faker.js/lib/locales/de/cell_phone/index.js":29}],902:[function(require,module,exports){ var company = {}; module['exports'] = company; company.prefix = require("./prefix"); company.name = require("./name"); -},{"./name":860,"./prefix":861}],860:[function(require,module,exports){ +},{"./name":903,"./prefix":904}],903:[function(require,module,exports){ module["exports"] = [ "#{prefix} #{Name.last_name}" ]; -},{}],861:[function(require,module,exports){ +},{}],904:[function(require,module,exports){ module["exports"] = [ "Công ty", "Cty TNHH", "Cty", "Cửa hàng", "Trung tâm", "Chi nhánh" ]; -},{}],862:[function(require,module,exports){ +},{}],905:[function(require,module,exports){ var vi = {}; module['exports'] = vi; vi.title = "Vietnamese"; vi.address = require("./address"); vi.internet = require("./internet"); @@ -40860,24 +50391,24 @@ vi.cell_phone = require("./cell_phone"); vi.name = require("./name"); vi.company = require("./company"); vi.lorem = require("./lorem"); -},{"./address":856,"./cell_phone":858,"./company":859,"./internet":864,"./lorem":865,"./name":868,"./phone_number":872}],863:[function(require,module,exports){ +},{"./address":899,"./cell_phone":901,"./company":902,"./internet":907,"./lorem":908,"./name":911,"./phone_number":915}],906:[function(require,module,exports){ module["exports"] = [ "com", "net", "info", "vn", "com.vn" ]; -},{}],864:[function(require,module,exports){ +},{}],907:[function(require,module,exports){ arguments[4][88][0].apply(exports,arguments) -},{"./domain_suffix":863,"/Users/a/dev/faker.js/lib/locales/de_CH/internet/index.js":88}],865:[function(require,module,exports){ +},{"./domain_suffix":906,"/Users/a/dev/faker.js/lib/locales/de_CH/internet/index.js":88}],908:[function(require,module,exports){ arguments[4][38][0].apply(exports,arguments) -},{"./words":866,"/Users/a/dev/faker.js/lib/locales/de/lorem/index.js":38}],866:[function(require,module,exports){ +},{"./words":909,"/Users/a/dev/faker.js/lib/locales/de/lorem/index.js":38}],909:[function(require,module,exports){ module["exports"] = [ "đã", "đang", "ừ", "ờ", @@ -40980,11 +50511,11 @@ "đồng", "quê", "hương" ]; -},{}],867:[function(require,module,exports){ +},{}],910:[function(require,module,exports){ module["exports"] = [ "Phạm", "Nguyễn", "Trần", "Lê", @@ -41010,18 +50541,18 @@ "Tô", "Trương", "Hà" ]; -},{}],868:[function(require,module,exports){ +},{}],911:[function(require,module,exports){ var name = {}; module['exports'] = name; name.first_name = require("./first_name"); name.last_name = require("./last_name"); name.name = require("./name"); -},{"./first_name":867,"./last_name":869,"./name":870}],869:[function(require,module,exports){ +},{"./first_name":910,"./last_name":912,"./name":913}],912:[function(require,module,exports){ module["exports"] = [ "Nam", "Trung", "Thanh", "Thị", @@ -41094,33 +50625,33 @@ "Thu", "Thủy", "Nhàn" ]; -},{}],870:[function(require,module,exports){ +},{}],913:[function(require,module,exports){ module["exports"] = [ "#{first_name} #{last_name}", "#{first_name} #{last_name} #{last_name}", "#{first_name} #{last_name} #{last_name} #{last_name}" ]; -},{}],871:[function(require,module,exports){ -module.exports=require(216) -},{"/Users/a/dev/faker.js/lib/locales/en_GB/phone_number/formats.js":216}],872:[function(require,module,exports){ +},{}],914:[function(require,module,exports){ +module.exports=require(225) +},{"/Users/a/dev/faker.js/lib/locales/en_GB/phone_number/formats.js":225}],915:[function(require,module,exports){ arguments[4][47][0].apply(exports,arguments) -},{"./formats":871,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],873:[function(require,module,exports){ +},{"./formats":914,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],916:[function(require,module,exports){ module["exports"] = [ "#####", "####", "###", "##", "#" ]; -},{}],874:[function(require,module,exports){ -module.exports=require(751) -},{"/Users/a/dev/faker.js/lib/locales/sv/address/city.js":751}],875:[function(require,module,exports){ +},{}],917:[function(require,module,exports){ +module.exports=require(791) +},{"/Users/a/dev/faker.js/lib/locales/sv/address/city.js":791}],918:[function(require,module,exports){ module["exports"] = [ "长", "上", "南", "西", @@ -41141,11 +50672,11 @@ "安", "吉", "包" ]; -},{}],876:[function(require,module,exports){ +},{}],919:[function(require,module,exports){ module["exports"] = [ "沙市", "京市", "宁市", "安市", @@ -41164,16 +50695,16 @@ "徽市", "林市", "头市" ]; -},{}],877:[function(require,module,exports){ +},{}],920:[function(require,module,exports){ module["exports"] = [ "中国" ]; -},{}],878:[function(require,module,exports){ +},{}],921:[function(require,module,exports){ var address = {}; module['exports'] = address; address.city_prefix = require("./city_prefix"); address.city_suffix = require("./city_suffix"); address.building_number = require("./building_number"); @@ -41184,13 +50715,13 @@ address.city = require("./city"); address.street_name = require("./street_name"); address.street_address = require("./street_address"); address.default_country = require("./default_country"); -},{"./building_number":873,"./city":874,"./city_prefix":875,"./city_suffix":876,"./default_country":877,"./postcode":879,"./state":880,"./state_abbr":881,"./street_address":882,"./street_name":883,"./street_suffix":884}],879:[function(require,module,exports){ -module.exports=require(674) -},{"/Users/a/dev/faker.js/lib/locales/ru/address/postcode.js":674}],880:[function(require,module,exports){ +},{"./building_number":916,"./city":917,"./city_prefix":918,"./city_suffix":919,"./default_country":920,"./postcode":922,"./state":923,"./state_abbr":924,"./street_address":925,"./street_name":926,"./street_suffix":927}],922:[function(require,module,exports){ +module.exports=require(714) +},{"/Users/a/dev/faker.js/lib/locales/ru/address/postcode.js":714}],923:[function(require,module,exports){ module["exports"] = [ "北京市", "上海市", "天津市", "重庆市", @@ -41224,11 +50755,11 @@ "海南省", "香港", "澳门" ]; -},{}],881:[function(require,module,exports){ +},{}],924:[function(require,module,exports){ module["exports"] = [ "京", "沪", "津", "渝", @@ -41262,21 +50793,21 @@ "琼", "港", "澳" ]; -},{}],882:[function(require,module,exports){ +},{}],925:[function(require,module,exports){ module["exports"] = [ "#{street_name}#{building_number}号" ]; -},{}],883:[function(require,module,exports){ +},{}],926:[function(require,module,exports){ module["exports"] = [ "#{Name.last_name}#{street_suffix}" ]; -},{}],884:[function(require,module,exports){ +},{}],927:[function(require,module,exports){ module["exports"] = [ "巷", "街", "路", "桥", @@ -41284,19 +50815,19 @@ "旁", "中心", "栋" ]; -},{}],885:[function(require,module,exports){ +},{}],928:[function(require,module,exports){ var zh_CN = {}; module['exports'] = zh_CN; zh_CN.title = "Chinese"; zh_CN.address = require("./address"); zh_CN.name = require("./name"); zh_CN.phone_number = require("./phone_number"); -},{"./address":878,"./name":887,"./phone_number":891}],886:[function(require,module,exports){ +},{"./address":921,"./name":930,"./phone_number":934}],929:[function(require,module,exports){ module["exports"] = [ "王", "李", "张", "刘", @@ -41396,13 +50927,13 @@ "武", "莫", "孔" ]; -},{}],887:[function(require,module,exports){ -arguments[4][868][0].apply(exports,arguments) -},{"./first_name":886,"./last_name":888,"./name":889,"/Users/a/dev/faker.js/lib/locales/vi/name/index.js":868}],888:[function(require,module,exports){ +},{}],930:[function(require,module,exports){ +arguments[4][911][0].apply(exports,arguments) +},{"./first_name":929,"./last_name":931,"./name":932,"/Users/a/dev/faker.js/lib/locales/vi/name/index.js":911}],931:[function(require,module,exports){ module["exports"] = [ "绍齐", "博文", "梓晨", "胤祥", @@ -41536,29 +51067,29 @@ "浩", "航", "彬" ]; -},{}],889:[function(require,module,exports){ +},{}],932:[function(require,module,exports){ module["exports"] = [ "#{first_name}#{last_name}" ]; -},{}],890:[function(require,module,exports){ +},{}],933:[function(require,module,exports){ module["exports"] = [ "###-########", "####-########", "###########" ]; -},{}],891:[function(require,module,exports){ +},{}],934:[function(require,module,exports){ arguments[4][47][0].apply(exports,arguments) -},{"./formats":890,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],892:[function(require,module,exports){ -module.exports=require(367) -},{"/Users/a/dev/faker.js/lib/locales/fr/address/building_number.js":367}],893:[function(require,module,exports){ -module.exports=require(751) -},{"/Users/a/dev/faker.js/lib/locales/sv/address/city.js":751}],894:[function(require,module,exports){ +},{"./formats":933,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],935:[function(require,module,exports){ +module.exports=require(376) +},{"/Users/a/dev/faker.js/lib/locales/fr/address/building_number.js":376}],936:[function(require,module,exports){ +module.exports=require(791) +},{"/Users/a/dev/faker.js/lib/locales/sv/address/city.js":791}],937:[function(require,module,exports){ module["exports"] = [ "臺北", "新北", "桃園", "臺中", @@ -41578,32 +51109,32 @@ "澎湖", "金門", "連江" ]; -},{}],895:[function(require,module,exports){ +},{}],938:[function(require,module,exports){ module["exports"] = [ "縣", "市" ]; -},{}],896:[function(require,module,exports){ +},{}],939:[function(require,module,exports){ module["exports"] = [ "Taiwan (R.O.C.)" ]; -},{}],897:[function(require,module,exports){ -arguments[4][878][0].apply(exports,arguments) -},{"./building_number":892,"./city":893,"./city_prefix":894,"./city_suffix":895,"./default_country":896,"./postcode":898,"./state":899,"./state_abbr":900,"./street_address":901,"./street_name":902,"./street_suffix":903,"/Users/a/dev/faker.js/lib/locales/zh_CN/address/index.js":878}],898:[function(require,module,exports){ -module.exports=require(674) -},{"/Users/a/dev/faker.js/lib/locales/ru/address/postcode.js":674}],899:[function(require,module,exports){ +},{}],940:[function(require,module,exports){ +arguments[4][921][0].apply(exports,arguments) +},{"./building_number":935,"./city":936,"./city_prefix":937,"./city_suffix":938,"./default_country":939,"./postcode":941,"./state":942,"./state_abbr":943,"./street_address":944,"./street_name":945,"./street_suffix":946,"/Users/a/dev/faker.js/lib/locales/zh_CN/address/index.js":921}],941:[function(require,module,exports){ +module.exports=require(714) +},{"/Users/a/dev/faker.js/lib/locales/ru/address/postcode.js":714}],942:[function(require,module,exports){ module["exports"] = [ "福建省", "台灣省" ]; -},{}],900:[function(require,module,exports){ +},{}],943:[function(require,module,exports){ module["exports"] = [ "北", "新北", "桃", "中", @@ -41624,36 +51155,36 @@ "澎", "金", "馬" ]; -},{}],901:[function(require,module,exports){ +},{}],944:[function(require,module,exports){ module["exports"] = [ "#{street_name}#{building_number}號" ]; -},{}],902:[function(require,module,exports){ -module.exports=require(883) -},{"/Users/a/dev/faker.js/lib/locales/zh_CN/address/street_name.js":883}],903:[function(require,module,exports){ +},{}],945:[function(require,module,exports){ +module.exports=require(926) +},{"/Users/a/dev/faker.js/lib/locales/zh_CN/address/street_name.js":926}],946:[function(require,module,exports){ module["exports"] = [ "街", "路", "北路", "南路", "東路", "西路" ]; -},{}],904:[function(require,module,exports){ +},{}],947:[function(require,module,exports){ var zh_TW = {}; module['exports'] = zh_TW; zh_TW.title = "Chinese (Taiwan)"; zh_TW.address = require("./address"); zh_TW.name = require("./name"); zh_TW.phone_number = require("./phone_number"); -},{"./address":897,"./name":906,"./phone_number":910}],905:[function(require,module,exports){ +},{"./address":940,"./name":949,"./phone_number":953}],948:[function(require,module,exports){ module["exports"] = [ "王", "李", "張", "劉", @@ -41753,13 +51284,13 @@ "武", "莫", "孔" ]; -},{}],906:[function(require,module,exports){ -arguments[4][868][0].apply(exports,arguments) -},{"./first_name":905,"./last_name":907,"./name":908,"/Users/a/dev/faker.js/lib/locales/vi/name/index.js":868}],907:[function(require,module,exports){ +},{}],949:[function(require,module,exports){ +arguments[4][911][0].apply(exports,arguments) +},{"./first_name":948,"./last_name":950,"./name":951,"/Users/a/dev/faker.js/lib/locales/vi/name/index.js":911}],950:[function(require,module,exports){ module["exports"] = [ "紹齊", "博文", "梓晨", "胤祥", @@ -41882,57 +51413,109 @@ "浩軒", "語堂", "聰健" ]; -},{}],908:[function(require,module,exports){ -module.exports=require(889) -},{"/Users/a/dev/faker.js/lib/locales/zh_CN/name/name.js":889}],909:[function(require,module,exports){ +},{}],951:[function(require,module,exports){ +module.exports=require(932) +},{"/Users/a/dev/faker.js/lib/locales/zh_CN/name/name.js":932}],952:[function(require,module,exports){ module["exports"] = [ "0#-#######", "02-########", "09##-######" ]; -},{}],910:[function(require,module,exports){ +},{}],953:[function(require,module,exports){ arguments[4][47][0].apply(exports,arguments) -},{"./formats":909,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],911:[function(require,module,exports){ +},{"./formats":952,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],954:[function(require,module,exports){ +/** + * + * @namespace faker.lorem + */ var Lorem = function (faker) { var self = this; var Helpers = faker.helpers; + /** + * word + * + * @method faker.lorem.word + * @param {number} num + */ + self.word = function (num) { + return faker.random.arrayElement(faker.definitions.lorem.words); + }; + + /** + * generates a space separated list of words + * + * @method faker.lorem.words + * @param {number} num number of words, defaults to 3 + */ self.words = function (num) { if (typeof num == 'undefined') { num = 3; } - return Helpers.shuffle(faker.definitions.lorem.words).slice(0, num); + var words = []; + for (var i = 0; i < num; i++) { + words.push(faker.lorem.word()); + } + return words.join(' '); }; + /** + * sentence + * + * @method faker.lorem.sentence + * @param {number} wordCount defaults to a random number between 3 and 10 + * @param {number} range + */ self.sentence = function (wordCount, range) { - if (typeof wordCount == 'undefined') { wordCount = 3; } - if (typeof range == 'undefined') { range = 7; } + if (typeof wordCount == 'undefined') { wordCount = faker.random.number({ min: 3, max: 10 }); } + // if (typeof range == 'undefined') { range = 7; } // strange issue with the node_min_test failing for captialize, please fix and add faker.lorem.back //return faker.lorem.words(wordCount + Helpers.randomNumber(range)).join(' ').capitalize(); - var sentence = faker.lorem.words(wordCount + faker.random.number(range)).join(' '); + var sentence = faker.lorem.words(wordCount); return sentence.charAt(0).toUpperCase() + sentence.slice(1) + '.'; }; - self.sentences = function (sentenceCount) { - if (typeof sentenceCount == 'undefined') { sentenceCount = 3; } + /** + * sentences + * + * @method faker.lorem.sentences + * @param {number} sentenceCount defautls to a random number between 2 and 6 + * @param {string} separator defaults to `' '` + */ + self.sentences = function (sentenceCount, separator) { + if (typeof sentenceCount === 'undefined') { sentenceCount = faker.random.number({ min: 2, max: 6 });} + if (typeof separator == 'undefined') { separator = " "; } var sentences = []; for (sentenceCount; sentenceCount > 0; sentenceCount--) { sentences.push(faker.lorem.sentence()); } - return sentences.join("\n"); + return sentences.join(separator); }; + /** + * paragraph + * + * @method faker.lorem.paragraph + * @param {number} sentenceCount defaults to 3 + */ self.paragraph = function (sentenceCount) { if (typeof sentenceCount == 'undefined') { sentenceCount = 3; } return faker.lorem.sentences(sentenceCount + faker.random.number(3)); }; + /** + * paragraphs + * + * @method faker.lorem.paragraphs + * @param {number} paragraphCount defaults to 3 + * @param {string} separatora defaults to `'\n \r'` + */ self.paragraphs = function (paragraphCount, separator) { if (typeof separator === "undefined") { separator = "\n \r"; } if (typeof paragraphCount == 'undefined') { paragraphCount = 3; } @@ -41940,20 +51523,54 @@ for (paragraphCount; paragraphCount > 0; paragraphCount--) { paragraphs.push(faker.lorem.paragraph()); } return paragraphs.join(separator); } - + + /** + * returns random text based on a random lorem method + * + * @method faker.lorem.text + * @param {number} times + */ + self.text = function loremText (times) { + var loremMethods = ['lorem.word', 'lorem.words', 'lorem.sentence', 'lorem.sentences', 'lorem.paragraph', 'lorem.paragraphs', 'lorem.lines']; + var randomLoremMethod = faker.random.arrayElement(loremMethods); + return faker.fake('{{' + randomLoremMethod + '}}'); + }; + + /** + * returns lines of lorem separated by `'\n'` + * + * @method faker.lorem.lines + * @param {number} lineCount defaults to a random number between 1 and 5 + */ + self.lines = function lines (lineCount) { + if (typeof lineCount === 'undefined') { lineCount = faker.random.number({ min: 1, max: 5 });} + return faker.lorem.sentences(lineCount, '\n') + }; + return self; }; module["exports"] = Lorem; -},{}],912:[function(require,module,exports){ +},{}],955:[function(require,module,exports){ +/** + * + * @namespace faker.name + */ function Name (faker) { + /** + * firstName + * + * @method firstName + * @param {mixed} gender + * @memberof faker.name + */ this.firstName = function (gender) { if (typeof faker.definitions.name.male_first_name !== "undefined" && typeof faker.definitions.name.female_first_name !== "undefined") { // some locale datasets ( like ru ) have first_name split by gender. since the name.first_name field does not exist in these datasets, // we must randomly pick a name from either gender array so faker.name.firstName will return the correct locale data ( and not fallback ) if (typeof gender !== 'number') { @@ -41966,10 +51583,17 @@ } } return faker.random.arrayElement(faker.definitions.name.first_name); }; + /** + * lastName + * + * @method lastName + * @param {mixed} gender + * @memberof faker.name + */ this.lastName = function (gender) { if (typeof faker.definitions.name.male_last_name !== "undefined" && typeof faker.definitions.name.female_last_name !== "undefined") { // some locale datasets ( like ru ) have last_name split by gender. i have no idea how last names can have genders, but also i do not speak russian // see above comment of firstName method if (typeof gender !== 'number') { @@ -41982,10 +51606,19 @@ } } return faker.random.arrayElement(faker.definitions.name.last_name); }; + /** + * findName + * + * @method findName + * @param {string} firstName + * @param {string} lastName + * @param {mixed} gender + * @memberof faker.name + */ this.findName = function (firstName, lastName, gender) { var r = faker.random.number(8); var prefix, suffix; // in particular locales first and last names split by gender, // thus we keep consistency by passing 0 as male and 1 as female @@ -41994,99 +51627,183 @@ } firstName = firstName || faker.name.firstName(gender); lastName = lastName || faker.name.lastName(gender); switch (r) { case 0: - prefix = faker.name.prefix(); + prefix = faker.name.prefix(gender); if (prefix) { return prefix + " " + firstName + " " + lastName; } case 1: - suffix = faker.name.prefix(); + suffix = faker.name.suffix(gender); if (suffix) { return firstName + " " + lastName + " " + suffix; } } return firstName + " " + lastName; }; + /** + * jobTitle + * + * @method jobTitle + * @memberof faker.name + */ this.jobTitle = function () { return faker.name.jobDescriptor() + " " + faker.name.jobArea() + " " + faker.name.jobType(); }; - - this.prefix = function () { - return faker.random.arrayElement(faker.definitions.name.prefix); + + /** + * prefix + * + * @method prefix + * @param {mixed} gender + * @memberof faker.name + */ + this.prefix = function (gender) { + if (typeof faker.definitions.name.male_prefix !== "undefined" && typeof faker.definitions.name.female_prefix !== "undefined") { + if (typeof gender !== 'number') { + gender = faker.random.number(1); + } + if (gender === 0) { + return faker.random.arrayElement(faker.locales[faker.locale].name.male_prefix); + } else { + return faker.random.arrayElement(faker.locales[faker.locale].name.female_prefix); + } + } + return faker.random.arrayElement(faker.definitions.name.prefix); }; + /** + * suffix + * + * @method suffix + * @memberof faker.name + */ this.suffix = function () { return faker.random.arrayElement(faker.definitions.name.suffix); }; + /** + * title + * + * @method title + * @memberof faker.name + */ this.title = function() { var descriptor = faker.random.arrayElement(faker.definitions.name.title.descriptor), level = faker.random.arrayElement(faker.definitions.name.title.level), job = faker.random.arrayElement(faker.definitions.name.title.job); return descriptor + " " + level + " " + job; }; + /** + * jobDescriptor + * + * @method jobDescriptor + * @memberof faker.name + */ this.jobDescriptor = function () { return faker.random.arrayElement(faker.definitions.name.title.descriptor); }; + /** + * jobArea + * + * @method jobArea + * @memberof faker.name + */ this.jobArea = function () { return faker.random.arrayElement(faker.definitions.name.title.level); }; + /** + * jobType + * + * @method jobType + * @memberof faker.name + */ this.jobType = function () { return faker.random.arrayElement(faker.definitions.name.title.job); }; } module['exports'] = Name; -},{}],913:[function(require,module,exports){ + +},{}],956:[function(require,module,exports){ +/** + * + * @namespace faker.phone + */ var Phone = function (faker) { var self = this; + /** + * phoneNumber + * + * @method faker.phone.phoneNumber + * @param {string} format + */ self.phoneNumber = function (format) { format = format || faker.phone.phoneFormats(); return faker.helpers.replaceSymbolWithNumber(format); }; // FIXME: this is strange passing in an array index. + /** + * phoneNumberFormat + * + * @method faker.phone.phoneFormatsArrayIndex + * @param phoneFormatsArrayIndex + */ self.phoneNumberFormat = function (phoneFormatsArrayIndex) { phoneFormatsArrayIndex = phoneFormatsArrayIndex || 0; return faker.helpers.replaceSymbolWithNumber(faker.definitions.phone_number.formats[phoneFormatsArrayIndex]); }; + /** + * phoneFormats + * + * @method faker.phone.phoneFormats + */ self.phoneFormats = function () { return faker.random.arrayElement(faker.definitions.phone_number.formats); }; return self; }; module['exports'] = Phone; -},{}],914:[function(require,module,exports){ +},{}],957:[function(require,module,exports){ var mersenne = require('../vendor/mersenne'); +/** + * + * @namespace faker.random + */ function Random (faker, seed) { // Use a user provided seed if it exists if (seed) { if (Array.isArray(seed) && seed.length) { mersenne.seed_array(seed); } else { mersenne.seed(seed); } } - // returns a single random number based on a max number or range + /** + * returns a single random number based on a max number or range + * + * @method faker.random.number + * @param {mixed} options + */ this.number = function (options) { if (typeof options === "number") { options = { max: options @@ -42117,51 +51834,320 @@ return randomNumber; } - // takes an array and returns a random element of the array + /** + * takes an array and returns a random element of the array + * + * @method faker.random.arrayElement + * @param {array} array + */ this.arrayElement = function (array) { array = array || ["a", "b", "c"]; var r = faker.random.number({ max: array.length - 1 }); return array[r]; } - // takes an object and returns the randomly key or value + /** + * takes an object and returns the randomly key or value + * + * @method faker.random.objectElement + * @param {object} object + * @param {mixed} field + */ this.objectElement = function (object, field) { object = object || { "foo": "bar", "too": "car" }; var array = Object.keys(object); var key = faker.random.arrayElement(array); return field === "key" ? key : object[key]; } + /** + * uuid + * + * @method faker.random.uuid + */ this.uuid = function () { + var self = this; var RFC4122_TEMPLATE = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'; var replacePlaceholders = function (placeholder) { - var random = Math.random()*16|0; + var random = self.number({ min: 0, max: 15 }); var value = placeholder == 'x' ? random : (random &0x3 | 0x8); return value.toString(16); }; return RFC4122_TEMPLATE.replace(/[xy]/g, replacePlaceholders); } - this.boolean =function () { + /** + * boolean + * + * @method faker.random.boolean + */ + this.boolean = function () { return !!faker.random.number(1) } + // TODO: have ability to return specific type of word? As in: noun, adjective, verb, etc + /** + * word + * + * @method faker.random.word + * @param {string} type + */ + this.word = function randomWord (type) { + + var wordMethods = [ + 'commerce.department', + 'commerce.productName', + 'commerce.productAdjective', + 'commerce.productMaterial', + 'commerce.product', + 'commerce.color', + + 'company.catchPhraseAdjective', + 'company.catchPhraseDescriptor', + 'company.catchPhraseNoun', + 'company.bsAdjective', + 'company.bsBuzz', + 'company.bsNoun', + 'address.streetSuffix', + 'address.county', + 'address.country', + 'address.state', + + 'finance.accountName', + 'finance.transactionType', + 'finance.currencyName', + + 'hacker.noun', + 'hacker.verb', + 'hacker.adjective', + 'hacker.ingverb', + 'hacker.abbreviation', + + 'name.jobDescriptor', + 'name.jobArea', + 'name.jobType']; + + // randomly pick from the many faker methods that can generate words + var randomWordMethod = faker.random.arrayElement(wordMethods); + return faker.fake('{{' + randomWordMethod + '}}'); + + } + + /** + * randomWords + * + * @method faker.random.words + * @param {number} count defaults to a random value between 1 and 3 + */ + this.words = function randomWords (count) { + var words = []; + if (typeof count === "undefined") { + count = faker.random.number({min:1, max: 3}); + } + for (var i = 0; i<count; i++) { + words.push(faker.random.word()); + } + return words.join(' '); + } + + /** + * locale + * + * @method faker.random.image + */ + this.image = function randomImage () { + return faker.image.image(); + } + + /** + * locale + * + * @method faker.random.locale + */ + this.locale = function randomLocale () { + return faker.random.arrayElement(Object.keys(faker.locales)); + }; + + /** + * alphaNumeric + * + * @method faker.random.alphaNumeric + */ + this.alphaNumeric = function alphaNumeric() { + return faker.random.arrayElement(["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "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"]); + } + return this; } module['exports'] = Random; +},{"../vendor/mersenne":959}],958:[function(require,module,exports){ +// generates fake data for many computer systems properties +/** + * + * @namespace faker.system + */ +function System (faker) { -// module.exports = random; + /** + * generates a file name with extension or optional type + * + * @method faker.system.fileName + * @param {string} ext + * @param {string} type + */ + this.fileName = function (ext, type) { + var str = faker.fake("{{random.words}}.{{system.fileExt}}"); + str = str.replace(/ /g, '_'); + str = str.replace(/\,/g, '_'); + str = str.replace(/\-/g, '_'); + str = str.replace(/\\/g, '_'); + str = str.toLowerCase(); + return str; + }; -},{"../vendor/mersenne":915}],915:[function(require,module,exports){ + /** + * commonFileName + * + * @method faker.system.commonFileName + * @param {string} ext + * @param {string} type + */ + this.commonFileName = function (ext, type) { + var str = faker.random.words() + "." + (ext || faker.system.commonFileExt()); + str = str.replace(/ /g, '_'); + str = str.replace(/\,/g, '_'); + str = str.replace(/\-/g, '_'); + str = str.replace(/\\/g, '_'); + str = str.toLowerCase(); + return str; + }; + + /** + * mimeType + * + * @method faker.system.mimeType + */ + this.mimeType = function () { + return faker.random.arrayElement(Object.keys(faker.definitions.system.mimeTypes)); + }; + + /** + * returns a commonly used file type + * + * @method faker.system.commonFileType + */ + this.commonFileType = function () { + var types = ['video', 'audio', 'image', 'text', 'application']; + return faker.random.arrayElement(types) + }; + + /** + * returns a commonly used file extension based on optional type + * + * @method faker.system.commonFileExt + * @param {string} type + */ + this.commonFileExt = function (type) { + var types = [ + 'application/pdf', + 'audio/mpeg', + 'audio/wav', + 'image/png', + 'image/jpeg', + 'image/gif', + 'video/mp4', + 'video/mpeg', + 'text/html' + ]; + return faker.system.fileExt(faker.random.arrayElement(types)); + }; + + + /** + * returns any file type available as mime-type + * + * @method faker.system.fileType + */ + this.fileType = function () { + var types = []; + var mimes = faker.definitions.system.mimeTypes; + Object.keys(mimes).forEach(function(m){ + var parts = m.split('/'); + if (types.indexOf(parts[0]) === -1) { + types.push(parts[0]); + } + }); + return faker.random.arrayElement(types); + }; + + /** + * fileExt + * + * @method faker.system.fileExt + * @param {string} mimeType + */ + this.fileExt = function (mimeType) { + var exts = []; + var mimes = faker.definitions.system.mimeTypes; + + // get specific ext by mime-type + if (typeof mimes[mimeType] === "object") { + return faker.random.arrayElement(mimes[mimeType].extensions); + } + + // reduce mime-types to those with file-extensions + Object.keys(mimes).forEach(function(m){ + if (mimes[m].extensions instanceof Array) { + mimes[m].extensions.forEach(function(ext){ + exts.push(ext) + }); + } + }); + return faker.random.arrayElement(exts); + }; + + /** + * not yet implemented + * + * @method faker.system.directoryPath + */ + this.directoryPath = function () { + // TODO + }; + + /** + * not yet implemented + * + * @method faker.system.filePath + */ + this.filePath = function () { + // TODO + }; + + /** + * semver + * + * @method faker.system.semver + */ + this.semver = function () { + return [faker.random.number(9), + faker.random.number(9), + faker.random.number(9)].join('.'); + } + +} + +module['exports'] = System; +},{}],959:[function(require,module,exports){ // this program is a JavaScript version of Mersenne Twister, with concealment and encapsulation in class, // an almost straight conversion from the original program, mt19937ar.c, // translated by y. okada on July 17, 2006. // and modified a little at july 20, 2006, but there are not any substantial differences. // in this program, procedure descriptions and comments of original source code were not removed. @@ -42445,11 +52431,11 @@ throw new Error("seed_array(A) must take array of numbers; is " + typeof(A)); } gen.init_by_array(A); } -},{}],916:[function(require,module,exports){ +},{}],960:[function(require,module,exports){ /* * password-generator * Copyright(c) 2011-2013 Bermi Ferrer <bermi@bermilabs.com> * MIT Licensed */ @@ -42511,10 +52497,10 @@ } } // Establish the root object, `window` in the browser, or `global` on the server. }(this)); -},{}],917:[function(require,module,exports){ +},{}],961:[function(require,module,exports){ /* Copyright (c) 2012-2014 Jeffrey Mealo Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated \ No newline at end of file