diff --git a/account/account-web/src/main/java/demo/account/controller/AccountController.java b/account/account-web/src/main/java/demo/account/controller/AccountController.java index 717eb45..289ff71 100644 --- a/account/account-web/src/main/java/demo/account/controller/AccountController.java +++ b/account/account-web/src/main/java/demo/account/controller/AccountController.java @@ -2,20 +2,22 @@ package demo.account.controller; import demo.account.domain.Account; import demo.account.domain.AccountService; +import demo.account.domain.Accounts; import demo.account.event.AccountEvent; import demo.event.EventService; import demo.event.Events; import demo.order.domain.Order; import demo.order.domain.Orders; -import org.springframework.hateoas.LinkBuilder; -import org.springframework.hateoas.Resource; -import org.springframework.hateoas.ResourceSupport; +import org.springframework.data.domain.Page; +import org.springframework.data.domain.PageRequest; +import org.springframework.hateoas.*; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import org.springframework.util.Assert; import org.springframework.web.bind.annotation.*; import java.lang.reflect.Method; +import java.util.Objects; import java.util.Optional; import static org.springframework.hateoas.mvc.ControllerLinkBuilder.linkTo; @@ -32,6 +34,11 @@ public class AccountController { this.eventService = eventService; } + @RequestMapping(path = "/accounts") + public ResponseEntity getAccounts(@RequestBody(required = false) PageRequest pageRequest) { + return new ResponseEntity<>(getAccountsResource(pageRequest), HttpStatus.OK); + } + @PostMapping(path = "/accounts") public ResponseEntity createAccount(@RequestBody Account account) { return Optional.ofNullable(createAccountResource(account)) @@ -89,6 +96,13 @@ public class AccountController { .orElseThrow(() -> new RuntimeException("Could not get account events")); } + @RequestMapping(path = "/accounts/{id}/orders/{orderId}") + public ResponseEntity getAccountOrders(@PathVariable Long id, @PathVariable Long orderId) { + return Optional.of(getAccountOrderResource(id, orderId)) + .map(e -> new ResponseEntity<>(e, HttpStatus.OK)) + .orElseThrow(() -> new RuntimeException("Could not get account events")); + } + @RequestMapping(path = "/accounts/{id}/commands") public ResponseEntity getCommands(@PathVariable Long id) { return Optional.ofNullable(getCommandsResource(id)) @@ -136,7 +150,7 @@ public class AccountController { public ResponseEntity postOrder(@PathVariable Long id, @RequestBody Order order) { return Optional.ofNullable(accountService.get(id)) .map(a -> a.postOrder(order)) - .map(o -> new ResponseEntity<>(o, HttpStatus.CREATED)) + .map(o -> new ResponseEntity<>(getAccountOrderResource(id, o.getIdentity()), HttpStatus.CREATED)) .orElseThrow(() -> new RuntimeException("The command could not be applied")); } @@ -170,6 +184,50 @@ public class AccountController { return getAccountResource(accountService.update(account)); } + private Accounts getAccountsResource(PageRequest pageRequest) { + if (pageRequest == null) { + pageRequest = new PageRequest(1, 20); + } + + Page accountPage = accountService.findAll(pageRequest.first()); + Accounts accounts = new Accounts(accountPage); + + accounts.add(new Link(new UriTemplate(linkTo(AccountController.class).slash("accounts").toUri().toString()) + .with("page", TemplateVariable.VariableType.REQUEST_PARAM) + .with("size", TemplateVariable.VariableType.REQUEST_PARAM), "self")); + + return accounts; + } + + private Order getAccountOrderResource(Long accountId, Long orderId) { + Account account = accountService.get(accountId); + Assert.notNull(account, "Account could not be found"); + + Order order = account.getOrders().getContent().stream().filter(o -> Objects + .equals(o.getIdentity(), orderId)) + .findFirst() + .orElseGet(null); + + Assert.notNull(order, "The order for the account could not be found"); + + order.removeLinks(); + + order.add( + linkTo(AccountController.class) + .slash("accounts") + .slash(accountId) + .slash("orders") + .slash(orderId) + .withSelfRel(), + linkTo(AccountController.class) + .slash("accounts") + .slash(accountId) + .withRel("account") + ); + + return order; + } + private Orders getAccountOrdersResource(Long accountId) { Account account = accountService.get(accountId); Assert.notNull(account, "Account could not be found"); diff --git a/account/account-web/src/main/java/demo/account/domain/AccountService.java b/account/account-web/src/main/java/demo/account/domain/AccountService.java index 32aac3c..b82f57b 100644 --- a/account/account-web/src/main/java/demo/account/domain/AccountService.java +++ b/account/account-web/src/main/java/demo/account/domain/AccountService.java @@ -5,6 +5,8 @@ import demo.account.event.AccountEventType; import demo.account.repository.AccountRepository; import demo.domain.Service; import org.apache.log4j.Logger; +import org.springframework.data.domain.Page; +import org.springframework.data.domain.Pageable; import org.springframework.util.Assert; @org.springframework.stereotype.Service @@ -17,6 +19,10 @@ public class AccountService extends Service { this.accountRepository = accountRepository; } + public Page findAll(Pageable pageable) { + return accountRepository.findAll(pageable); + } + /** * Register a new {@link Account} and handle a synchronous event flow for account creation * diff --git a/account/account-web/src/main/java/demo/account/domain/Accounts.java b/account/account-web/src/main/java/demo/account/domain/Accounts.java new file mode 100644 index 0000000..0fabf2d --- /dev/null +++ b/account/account-web/src/main/java/demo/account/domain/Accounts.java @@ -0,0 +1,63 @@ +package demo.account.domain; + +import org.springframework.data.domain.Page; +import org.springframework.hateoas.Link; +import org.springframework.hateoas.Resources; + +import java.io.Serializable; + +public class Accounts extends Resources { + + private PageModel page; + + public Accounts(Page accountPage) { + super(accountPage.getContent()); + page = new PageModel(accountPage); + } + + public Accounts(Iterable content, Link... links) { + super(content, links); + } + + public Accounts(Iterable content, Iterable links) { + super(content, links); + } + + public PageModel getPage() { + return page; + } + + class PageModel implements Serializable { + + private int number; + private int size; + private int totalPages; + private long totalElements; + + public PageModel() { + } + + public PageModel(Page page) { + number = page.getNumber(); + size = page.getSize(); + totalPages = page.getTotalPages(); + totalElements = page.getTotalElements(); + } + + public int getNumber() { + return number; + } + + public int getSize() { + return size; + } + + public int getTotalPages() { + return totalPages; + } + + public long getTotalElements() { + return totalElements; + } + } +} diff --git a/account/account-web/src/main/java/demo/order/domain/Order.java b/account/account-web/src/main/java/demo/order/domain/Order.java index e8cca80..93ac5fe 100644 --- a/account/account-web/src/main/java/demo/order/domain/Order.java +++ b/account/account-web/src/main/java/demo/order/domain/Order.java @@ -1,6 +1,7 @@ package demo.order.domain; import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.annotation.JsonProperty; import demo.domain.Aggregate; import demo.domain.Module; import demo.order.event.OrderEvent; @@ -105,6 +106,7 @@ public class Order extends Aggregate { return orderEvents; } + @JsonProperty("orderId") @Override public Long getIdentity() { return id; diff --git a/docker-compose.yml b/docker-compose.yml index ed0264a..e7ad48f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -72,6 +72,12 @@ discovery: image: discovery ports: - 8761:8761 + environment: + - SPRING_PROFILES_ACTIVE=docker + - DOCKER_IP=$DOCKER_IP + net: host +dashboard: + image: dashboard environment: - SPRING_PROFILES_ACTIVE=docker - DOCKER_IP=$DOCKER_IP diff --git a/order/order-worker/src/main/java/demo/OrderWorker.java b/order/order-worker/src/main/java/demo/OrderWorker.java index f004750..16800b9 100644 --- a/order/order-worker/src/main/java/demo/OrderWorker.java +++ b/order/order-worker/src/main/java/demo/OrderWorker.java @@ -3,8 +3,10 @@ package demo; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.client.discovery.EnableDiscoveryClient; +import org.springframework.context.annotation.Bean; import org.springframework.hateoas.config.EnableHypermediaSupport; import org.springframework.hateoas.config.EnableHypermediaSupport.HypermediaType; +import org.springframework.web.client.RestTemplate; @SpringBootApplication @EnableDiscoveryClient @@ -13,4 +15,9 @@ public class OrderWorker { public static void main(String[] args) { SpringApplication.run(OrderWorker.class, args); } + + @Bean + public RestTemplate restTemplate() { + return new RestTemplate(); + } } \ No newline at end of file diff --git a/order/order-worker/src/main/java/demo/order/StateFactory.java b/order/order-worker/src/main/java/demo/order/StateFactory.java index cc4b871..dfd9c43 100644 --- a/order/order-worker/src/main/java/demo/order/StateFactory.java +++ b/order/order-worker/src/main/java/demo/order/StateFactory.java @@ -6,6 +6,8 @@ import demo.order.event.OrderEvent; import demo.order.event.OrderEventType; import demo.order.event.OrderEvents; import org.apache.log4j.Logger; +import org.springframework.cloud.client.ServiceInstance; +import org.springframework.cloud.client.discovery.DiscoveryClient; import org.springframework.hateoas.Link; import org.springframework.hateoas.MediaTypes; import org.springframework.hateoas.client.Traverson; @@ -14,31 +16,57 @@ import org.springframework.messaging.support.MessageBuilder; import org.springframework.statemachine.StateMachine; import org.springframework.stereotype.Service; import org.springframework.util.Assert; +import org.springframework.web.client.RestTemplate; import java.net.URI; -import java.util.HashMap; -import java.util.Map; +import java.util.*; @Service public class StateFactory { final private Logger log = Logger.getLogger(StateFactory.class); final private StateService stateService; + final private RestTemplate restTemplate; + final private DiscoveryClient discoveryClient; - public StateFactory(StateService stateService) { + public StateFactory(StateService stateService, RestTemplate restTemplate, DiscoveryClient discoveryClient) { this.stateService = stateService; + this.restTemplate = restTemplate; + this.discoveryClient = discoveryClient; } public Order apply(OrderEvent orderEvent) { Assert.notNull(orderEvent, "Cannot apply a null event"); Assert.notNull(orderEvent.getId(), "The event payload's identity link was not found"); + List serviceInstances = discoveryClient.getInstances("order-web"); + Assert.notEmpty(serviceInstances, "No instances available for order-web"); + Integer instanceNum = new Random().nextInt(serviceInstances.size()); + ServiceInstance orderService = serviceInstances.get(instanceNum); + + URI orderHref = getLoadBalanceUri(orderService, URI.create(orderEvent.getLink("order").getHref())); + URI selfHref = getLoadBalanceUri(orderService, URI.create(orderEvent.getLink("self").getHref())); + + orderEvent.getLinks() + .replaceAll(a -> Objects.equals(a.getRel(), "order") ? new Link(orderHref + .toString(), "order") : a); + + orderEvent.getLinks() + .replaceAll(a -> Objects.equals(a.getRel(), "self") ? new Link(selfHref + .toString(), "self") : a); + StateMachine stateMachine = getStateMachine(orderEvent); stateMachine.stop(); return stateMachine.getExtendedState().get("order", Order.class); } + private URI getLoadBalanceUri(ServiceInstance serviceInstance, URI uri) { + return URI.create(uri.toString() + .replace(uri.getHost(), serviceInstance.getHost()) + .replace(":" + uri.getPort(), ":" + String.valueOf(serviceInstance.getPort()))); + } + private StateMachine getStateMachine(OrderEvent orderEvent) { Link eventId = orderEvent.getId(); log.info(String.format("Order event received: %s", eventId)); @@ -67,13 +95,18 @@ public class StateFactory { } private OrderEvents getEventLog(OrderEvent event) { + + // Replace the host and port of the link with an available instance + URI orderHref = URI.create(event.getLink("order") + .getHref()); + // Follow the hypermedia link to fetch the attached order - Traverson traverson = new Traverson( - URI.create(event.getLink("order") - .getHref()), + Traverson traverson = new Traverson(orderHref, MediaTypes.HAL_JSON ); + traverson.setRestOperations(restTemplate); + // Get the event log for the attached order resource return traverson.follow("events") .toEntity(OrderEvents.class) diff --git a/order/order-worker/src/main/java/demo/order/event/OrderEvent.java b/order/order-worker/src/main/java/demo/order/event/OrderEvent.java index a485699..79550bf 100644 --- a/order/order-worker/src/main/java/demo/order/event/OrderEvent.java +++ b/order/order-worker/src/main/java/demo/order/event/OrderEvent.java @@ -1,6 +1,8 @@ package demo.order.event; +import com.fasterxml.jackson.annotation.JsonIgnore; import demo.domain.AbstractEntity; +import org.springframework.hateoas.Link; public class OrderEvent extends AbstractEntity { @@ -21,6 +23,12 @@ public class OrderEvent extends AbstractEntity { this.type = type; } + @JsonIgnore + @Override + public Link getId() { + return super.getId(); + } + @Override public String toString() { return "OrderEvent{" + diff --git a/platform-services/data-flow-server/pom.xml b/platform-services/data-flow-server/pom.xml index 2f909dc..d6dc9d7 100644 --- a/platform-services/data-flow-server/pom.xml +++ b/platform-services/data-flow-server/pom.xml @@ -39,7 +39,7 @@ org.springframework.cloud spring-cloud-dataflow-dependencies - 1.1.0.RELEASE + 1.1.2.RELEASE pom import diff --git a/platform-services/data-flow-server/src/main/java/demo/ImportResources.java b/platform-services/data-flow-server/src/main/java/demo/ImportResources.java index 4df835e..d429984 100644 --- a/platform-services/data-flow-server/src/main/java/demo/ImportResources.java +++ b/platform-services/data-flow-server/src/main/java/demo/ImportResources.java @@ -33,19 +33,51 @@ public class ImportResources implements ApplicationListener streams = Arrays.asList( - new StreamApp("account-stream", - "account-web: account-web | account-worker: account-worker"), - new StreamApp("order-stream", - "order-web: order-web | order-worker: order-worker"), - new StreamApp("payment-stream", - "payment-web: payment-web | payment-worker: payment-worker"), - new StreamApp("warehouse-stream", - "warehouse-web: warehouse-web | warehouse-worker: warehouse-worker")); + new StreamApp("account-event-stream", + "account-web > :account-stream"), + new StreamApp("account-event-processor", + ":account-stream > account-worker"), + new StreamApp("account-event-counter", + ":account-stream > field-value-counter --field-name=type --name=account-events"), + new StreamApp("order-event-stream", + "order-web > :order-stream"), + new StreamApp("order-event-processor", + ":order-stream > order-worker"), + new StreamApp("order-event-counter", + ":order-stream > field-value-counter --field-name=type --name=order-events"), + new StreamApp("payment-event-stream", + "payment-web > :payment-stream"), + new StreamApp("payment-event-processor", + ":payment-stream > payment-worker"), + new StreamApp("payment-event-counter", + ":payment-stream > field-value-counter --field-name=type --name=payment-events"), + new StreamApp("warehouse-event-stream", + "warehouse-web > :warehouse-stream"), + new StreamApp("warehouse-event-processor", + ":warehouse-stream > warehouse-worker"), + new StreamApp("warehouse-event-counter", + ":warehouse-stream > field-value-counter --field-name=type --name=warehouse-events"), + new StreamApp("account-load-simulator", "time --time-unit=SECONDS --initial-delay=60 " + + "--fixed-delay=30 | " + + "load-simulator --domain=ACCOUNT --operation=CREATE > :load-log"), + new StreamApp("inventory-load-simulator", "time --time-unit=SECONDS --initial-delay=60 " + + "--fixed-delay=1 | " + + "load-simulator --domain=INVENTORY --operation=CREATE --range=10 > :load-log"), + new StreamApp("order-load-simulator", "time --time-unit=SECONDS --initial-delay=80 " + + "--fixed-delay=5 | " + + "load-simulator --command=POST_ORDER --domain=ACCOUNT --operation=CREATE --range=5 > :load-log"), + new StreamApp("account-counter", + ":account-stream > counter --name-expression=payload.type.toString()"), + new StreamApp("order-counter", + ":order-stream > counter --name-expression=payload.type.toString()"), + new StreamApp("warehouse-counter", + ":warehouse-stream > counter --name-expression=payload.type.toString()")); // Deploy the streams in parallel streams.parallelStream() .forEach(stream -> dataFlowTemplate.streamOperations() .createStream(stream.getName(), stream.getDefinition(), true)); + } catch (MalformedURLException e) { e.printStackTrace(); } diff --git a/platform-services/data-flow-server/src/main/resources/static/app.properties b/platform-services/data-flow-server/src/main/resources/static/app.properties index 12c6a11..34530c6 100644 --- a/platform-services/data-flow-server/src/main/resources/static/app.properties +++ b/platform-services/data-flow-server/src/main/resources/static/app.properties @@ -5,4 +5,5 @@ sink.order-worker=maven://org.kbastani:order-worker:0.0.1-SNAPSHOT source.payment-web=maven://org.kbastani:payment-web:0.0.1-SNAPSHOT sink.payment-worker=maven://org.kbastani:payment-worker:0.0.1-SNAPSHOT source.warehouse-web=maven://org.kbastani:warehouse-web:0.0.1-SNAPSHOT -sink.warehouse-worker=maven://org.kbastani:warehouse-worker:0.0.1-SNAPSHOT \ No newline at end of file +sink.warehouse-worker=maven://org.kbastani:warehouse-worker:0.0.1-SNAPSHOT +processor.load-simulator=maven://org.kbastani:load-simulator:1.0-SNAPSHOT \ No newline at end of file diff --git a/platform-services/pom.xml b/platform-services/pom.xml index 8f75f2b..af1a3dd 100644 --- a/platform-services/pom.xml +++ b/platform-services/pom.xml @@ -26,5 +26,6 @@ discovery data-flow-server + stream-modules \ No newline at end of file diff --git a/platform-services/stream-modules/load-simulator/pom.xml b/platform-services/stream-modules/load-simulator/pom.xml new file mode 100644 index 0000000..9b6eb97 --- /dev/null +++ b/platform-services/stream-modules/load-simulator/pom.xml @@ -0,0 +1,67 @@ + + + 4.0.0 + + load-simulator + jar + load-simulator + Simulates load on event-driven microservices + + + org.kbastani + stream-modules + 1.0-SNAPSHOT + ../ + + + + UTF-8 + UTF-8 + 1.8 + + + + + org.springframework.cloud + spring-cloud-stream + + + org.springframework.cloud + spring-cloud-starter-eureka + + + org.springframework.boot + spring-boot-starter-hateoas + + + org.springframework.cloud + spring-cloud-starter-stream-kafka + + + org.springframework.boot + spring-boot-starter-integration + + + org.springframework.boot + spring-boot-configuration-processor + true + + + + com.github.javafaker + javafaker + 0.12 + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + + diff --git a/platform-services/stream-modules/load-simulator/src/main/java/demo/Command.java b/platform-services/stream-modules/load-simulator/src/main/java/demo/Command.java new file mode 100644 index 0000000..a84e1e7 --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/java/demo/Command.java @@ -0,0 +1,5 @@ +package demo; + +public enum Command { + POST_ORDER +} diff --git a/platform-services/stream-modules/load-simulator/src/main/java/demo/Domain.java b/platform-services/stream-modules/load-simulator/src/main/java/demo/Domain.java new file mode 100644 index 0000000..d04b7b3 --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/java/demo/Domain.java @@ -0,0 +1,8 @@ +package demo; + +public enum Domain { + ACCOUNT, + ORDER, + WAREHOUSE, + INVENTORY +} diff --git a/platform-services/stream-modules/load-simulator/src/main/java/demo/LoadProcessor.java b/platform-services/stream-modules/load-simulator/src/main/java/demo/LoadProcessor.java new file mode 100644 index 0000000..dd7028d --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/java/demo/LoadProcessor.java @@ -0,0 +1,164 @@ +/* + * Copyright 2015 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package demo; + +import com.github.javafaker.Faker; +import demo.account.domain.Account; +import demo.account.domain.AccountStatus; +import demo.account.service.AccountService; +import demo.domain.Address; +import demo.domain.AddressType; +import demo.inventory.domain.Inventory; +import demo.inventory.domain.InventoryStatus; +import demo.order.domain.LineItem; +import demo.order.domain.Order; +import demo.warehouse.domain.Warehouse; +import demo.warehouse.service.WarehouseService; +import org.apache.log4j.Logger; +import org.springframework.cloud.stream.messaging.Processor; +import org.springframework.integration.annotation.MessageEndpoint; +import org.springframework.integration.annotation.ServiceActivator; +import org.springframework.messaging.Message; + +import java.util.ArrayList; +import java.util.List; +import java.util.Random; +import java.util.stream.IntStream; +import java.util.stream.LongStream; + +@MessageEndpoint +public class LoadProcessor { + + private static final Logger log = Logger.getLogger(LoadProcessor.class); + private final LoadSimulatorProperties properties; + private final AccountService accountService; + private final WarehouseService warehouseService; + + public LoadProcessor(LoadSimulatorProperties properties, AccountService accountService, + WarehouseService warehouseService) { + this.properties = properties; + this.accountService = accountService; + this.warehouseService = warehouseService; + } + + @ServiceActivator(inputChannel = Processor.INPUT, outputChannel = Processor.OUTPUT) + public Object process(Message message) { + return handleRequest(message); + } + + private String handleRequest(Message message) { + StringBuffer sb = new StringBuffer(); + switch (properties.getDomain()) { + case ACCOUNT: + accountOperation(properties.getOperation(), sb); + break; + case ORDER: + break; + case WAREHOUSE: + break; + case INVENTORY: + inventoryOperation(properties.getOperation(), sb); + break; + } + + return sb.toString(); + } + + private void inventoryOperation(Operation operation, StringBuffer sb) { + Faker faker = new Faker(); + + switch (operation) { + case CREATE: + Warehouse warehouse = null; + + try { + warehouse = warehouseService.get(1L); + } catch (Exception ex) { + log.error(ex); + } + + if (warehouse == null) { + // Create the first warehouse + warehouse = warehouseService.create(new Warehouse(new Address(faker.address().streetAddress(), + faker.address().buildingNumber(), + faker.address().state(), + faker.address().city(), + faker.address().country(), + Integer.parseInt(faker.address().zipCode())))); + + sb.append("[Warehouse created]\n"); + } + + List inventory = new ArrayList<>(); + + LongStream.range(0, properties.getRange()) + .forEach(a -> inventory.add(new Inventory(InventoryStatus.INVENTORY_CREATED, "SKU-" + a))); + + List results = warehouseService.addInventory(inventory, 1L); + + sb.append(String.format("[%s inventory added to warehouse]\n", results.size())); + + break; + } + } + + private void accountOperation(Operation operation, StringBuffer sb) { + + Faker faker = new Faker(); + + switch (operation) { + case CREATE: + if (properties.getCommand() == Command.POST_ORDER) { + // Post new order to the accounts + LongStream.range(1, properties.getRange() + 1) + .forEach(a -> { + try { + Order order = new Order(a, new Address(faker.address().streetAddress(), + faker.address().buildingNumber(), + faker.address().state(), + faker.address().city(), + faker.address().country(), + Integer.parseInt(faker.address().zipCode().substring(0, 4)), + AddressType.SHIPPING)); + + IntStream.range(0, new Random().nextInt(5)) + .forEach(i -> order.getLineItems() + .add(new LineItem(faker.commerce().productName(), + "SKU-" + i, new Random().nextInt(3), Double + .parseDouble(faker.commerce().price(.99, 50.0)), .06))); + + Order result = accountService.postOrder(a, order); + + sb.append(String.format("[New order posted to account %s]\n", a)); + } catch (Exception ex) { + log.error(ex); + } + }); + } else { + LongStream.range(0, properties.getRange()) + .forEach(a -> accountService + .create(new Account(faker.name().firstName(), faker.name().lastName(), faker + .internet() + .emailAddress(), AccountStatus.ACCOUNT_CREATED))); + + sb.append(String.format("[%s new accounts created]\n", properties.getRange())); + } + break; + } + } + +} diff --git a/platform-services/stream-modules/load-simulator/src/main/java/demo/LoadSimulatorApplication.java b/platform-services/stream-modules/load-simulator/src/main/java/demo/LoadSimulatorApplication.java new file mode 100644 index 0000000..aeb2900 --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/java/demo/LoadSimulatorApplication.java @@ -0,0 +1,31 @@ +/* + * Copyright 2015 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package demo; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; +import org.springframework.cloud.netflix.eureka.EnableEurekaClient; + +@EnableEurekaClient +@SpringBootApplication +public class LoadSimulatorApplication { + + public static void main(String[] args) { + SpringApplication.run(LoadSimulatorApplication.class, args); + } + +} diff --git a/platform-services/stream-modules/load-simulator/src/main/java/demo/LoadSimulatorConfiguration.java b/platform-services/stream-modules/load-simulator/src/main/java/demo/LoadSimulatorConfiguration.java new file mode 100644 index 0000000..82f22a7 --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/java/demo/LoadSimulatorConfiguration.java @@ -0,0 +1,41 @@ +/* + * Copyright 2015 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package demo; + +import org.springframework.boot.context.properties.EnableConfigurationProperties; +import org.springframework.cloud.client.loadbalancer.LoadBalanced; +import org.springframework.cloud.stream.annotation.EnableBinding; +import org.springframework.cloud.stream.config.SpelExpressionConverterConfiguration; +import org.springframework.cloud.stream.messaging.Processor; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.context.annotation.Import; +import org.springframework.web.client.RestTemplate; + +@Configuration +@EnableBinding(Processor.class) +@Import(SpelExpressionConverterConfiguration.class) +@EnableConfigurationProperties(LoadSimulatorProperties.class) +public class LoadSimulatorConfiguration { + + @Bean + @LoadBalanced + public RestTemplate restTemplate() { + return new RestTemplate(); + } + +} diff --git a/platform-services/stream-modules/load-simulator/src/main/java/demo/LoadSimulatorProperties.java b/platform-services/stream-modules/load-simulator/src/main/java/demo/LoadSimulatorProperties.java new file mode 100644 index 0000000..4a7cb6b --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/java/demo/LoadSimulatorProperties.java @@ -0,0 +1,59 @@ +/* + * Copyright 2015 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package demo; + +import org.springframework.boot.context.properties.ConfigurationProperties; + +@ConfigurationProperties +public class LoadSimulatorProperties { + private Domain domain = Domain.ACCOUNT; + private Operation operation = Operation.CREATE; + private Command command; + private Long range = 1L; + + public Domain getDomain() { + return domain; + } + + public void setDomain(Domain domain) { + this.domain = domain; + } + + public Operation getOperation() { + return operation; + } + + public void setOperation(Operation operation) { + this.operation = operation; + } + + public Command getCommand() { + return command; + } + + public void setCommand(Command command) { + this.command = command; + } + + public Long getRange() { + return range; + } + + public void setRange(Long range) { + this.range = range; + } +} diff --git a/platform-services/stream-modules/load-simulator/src/main/java/demo/Operation.java b/platform-services/stream-modules/load-simulator/src/main/java/demo/Operation.java new file mode 100644 index 0000000..421a576 --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/java/demo/Operation.java @@ -0,0 +1,5 @@ +package demo; + +public enum Operation { + CREATE +} diff --git a/platform-services/stream-modules/load-simulator/src/main/java/demo/account/domain/Account.java b/platform-services/stream-modules/load-simulator/src/main/java/demo/account/domain/Account.java new file mode 100644 index 0000000..196fa47 --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/java/demo/account/domain/Account.java @@ -0,0 +1,85 @@ +package demo.account.domain; + +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.annotation.JsonProperty; +import org.springframework.hateoas.Link; +import org.springframework.hateoas.TemplateVariable; +import org.springframework.hateoas.UriTemplate; + +import java.util.ArrayList; +import java.util.List; + +public class Account { + private Long id; + private List accountEvents = new ArrayList<>(); + private String firstName; + private String lastName; + private String email; + private AccountStatus status; + + public Account() { + } + + public Account(String firstName, String lastName, String email, AccountStatus status) { + this.firstName = firstName; + this.lastName = lastName; + this.email = email; + this.status = status; + } + + public String getFirstName() { + return firstName; + } + + public void setFirstName(String firstName) { + this.firstName = firstName; + } + + public String getLastName() { + return lastName; + } + + public void setLastName(String lastName) { + this.lastName = lastName; + } + + public String getEmail() { + return email; + } + + public void setEmail(String email) { + this.email = email; + } + + public AccountStatus getStatus() { + return status; + } + + public void setStatus(AccountStatus status) { + this.status = status; + } + + @JsonIgnore + public List getEvents() { + return accountEvents; + } + + @JsonProperty("accountId") + public Long getIdentity() { + return id; + } + + public void setIdentity(Long id) { + this.id = id; + } + + /** + * Returns the {@link Link} with a rel of {@link Link#REL_SELF}. + */ + public Link getId() { + return new Link(new UriTemplate("http://account-web/v1/accounts/{id}").with("id", TemplateVariable.VariableType + .PATH_VARIABLE) + .expand(getIdentity()) + .toString()).withSelfRel(); + } +} diff --git a/platform-services/stream-modules/load-simulator/src/main/java/demo/account/domain/AccountEvent.java b/platform-services/stream-modules/load-simulator/src/main/java/demo/account/domain/AccountEvent.java new file mode 100644 index 0000000..be9534b --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/java/demo/account/domain/AccountEvent.java @@ -0,0 +1,38 @@ +package demo.account.domain; + +/** + * The domain event {@link AccountEvent} tracks the type and state of events as + * applied to the {@link Account} domain object. This event resource can be used + * to event source the aggregate state of {@link Account}. + *

+ * This event resource also provides a transaction log that can be used to append + * actions to the event. + * + * @author kbastani + */ +public class AccountEvent { + + private AccountEventType type; + + public AccountEvent() { + } + + public AccountEvent(AccountEventType type) { + this.type = type; + } + + public AccountEventType getType() { + return type; + } + + public void setType(AccountEventType type) { + this.type = type; + } + + @Override + public String toString() { + return "AccountEvent{" + + "type=" + type + + "} " + super.toString(); + } +} diff --git a/platform-services/stream-modules/load-simulator/src/main/java/demo/account/domain/AccountEventType.java b/platform-services/stream-modules/load-simulator/src/main/java/demo/account/domain/AccountEventType.java new file mode 100644 index 0000000..ae13a02 --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/java/demo/account/domain/AccountEventType.java @@ -0,0 +1,15 @@ +package demo.account.domain; + +/** + * The {@link AccountEventType} represents a collection of possible events that describe + * state transitions of {@link AccountStatus} on the {@link Account} aggregate. + * + * @author kbastani + */ +public enum AccountEventType { + ACCOUNT_CREATED, + ACCOUNT_CONFIRMED, + ACCOUNT_ACTIVATED, + ACCOUNT_SUSPENDED, + ACCOUNT_ARCHIVED +} diff --git a/platform-services/stream-modules/load-simulator/src/main/java/demo/account/domain/AccountStatus.java b/platform-services/stream-modules/load-simulator/src/main/java/demo/account/domain/AccountStatus.java new file mode 100644 index 0000000..808aa9e --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/java/demo/account/domain/AccountStatus.java @@ -0,0 +1,17 @@ +package demo.account.domain; + +/** + * The {@link AccountStatus} describes the state of an {@link Account}. + * The aggregate state of a {@link Account} is sourced from attached domain + * events in the form of {@link demo.event.AccountEvent}. + * + * @author kbastani + */ +public enum AccountStatus { + ACCOUNT_CREATED, + ACCOUNT_PENDING, + ACCOUNT_CONFIRMED, + ACCOUNT_ACTIVE, + ACCOUNT_SUSPENDED, + ACCOUNT_ARCHIVED +} diff --git a/platform-services/stream-modules/load-simulator/src/main/java/demo/account/service/AccountService.java b/platform-services/stream-modules/load-simulator/src/main/java/demo/account/service/AccountService.java new file mode 100644 index 0000000..e08a3d0 --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/java/demo/account/service/AccountService.java @@ -0,0 +1,109 @@ +package demo.account.service; + +import com.fasterxml.jackson.databind.ObjectMapper; +import demo.account.domain.Account; +import demo.order.domain.Order; +import org.apache.log4j.Logger; +import org.springframework.hateoas.TemplateVariable; +import org.springframework.hateoas.UriTemplate; +import org.springframework.http.HttpMethod; +import org.springframework.http.RequestEntity; +import org.springframework.stereotype.Service; +import org.springframework.web.client.RestClientResponseException; +import org.springframework.web.client.RestTemplate; + +import java.io.IOException; +import java.util.HashMap; +import java.util.Map; + +@Service +public class AccountService { + + private final Logger log = Logger.getLogger(this.getClass()); + private final RestTemplate restTemplate; + + public AccountService(RestTemplate restTemplate) { + this.restTemplate = restTemplate; + } + + public Account get(Long accountId) { + Account result; + try { + result = restTemplate.getForObject(new UriTemplate("http://account-web/v1/accounts/{id}") + .with("id", TemplateVariable.VariableType.PATH_VARIABLE) + .expand(accountId), Account.class); + } catch (RestClientResponseException ex) { + log.error("Get account failed", ex); + throw new IllegalStateException(getHttpStatusMessage(ex), ex); + } + + return result; + } + + public Account create(Account account) { + Account result; + try { + result = restTemplate.postForObject(new UriTemplate("http://account-web/v1/accounts").expand(), + account, Account.class); + } catch (RestClientResponseException ex) { + log.error("Create account failed", ex); + throw new IllegalStateException(getHttpStatusMessage(ex), ex); + } + + return result; + } + + public Account update(Account account) { + Account result; + try { + result = restTemplate.exchange(new RequestEntity<>(account, HttpMethod.PUT, + new UriTemplate("http://account-web/v1/accounts/{id}") + .with("id", TemplateVariable.VariableType.PATH_VARIABLE) + .expand(account.getIdentity())), Account.class).getBody(); + } catch (RestClientResponseException ex) { + log.error("Update account failed", ex); + throw new IllegalStateException(getHttpStatusMessage(ex), ex); + } + + return result; + } + + public boolean delete(Long accountId) { + try { + restTemplate.delete(new UriTemplate("http://account-web/v1/accounts/{id}") + .with("id", TemplateVariable.VariableType.PATH_VARIABLE).expand(accountId)); + } catch (RestClientResponseException ex) { + log.error("Delete account failed", ex); + throw new IllegalStateException(getHttpStatusMessage(ex), ex); + } + + return true; + } + + public Order postOrder(Long accountId, Order order) { + Order result; + try { + result = restTemplate.postForObject(new UriTemplate(String + .format("http://account-web/v1/accounts/%s/commands/postOrder", accountId)).expand(), + order, Order.class); + } catch (RestClientResponseException ex) { + log.error("Post order to account has failed", ex); + throw new IllegalStateException(getHttpStatusMessage(ex), ex); + } + + return result; + } + + private String getHttpStatusMessage(RestClientResponseException ex) { + Map errorMap = new HashMap<>(); + try { + errorMap = new ObjectMapper() + .readValue(ex.getResponseBodyAsString(), errorMap + .getClass()); + } catch (IOException e) { + e.printStackTrace(); + } + + return errorMap.getOrDefault("message", null); + } +} diff --git a/platform-services/stream-modules/load-simulator/src/main/java/demo/domain/AbstractEntity.java b/platform-services/stream-modules/load-simulator/src/main/java/demo/domain/AbstractEntity.java new file mode 100644 index 0000000..083d231 --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/java/demo/domain/AbstractEntity.java @@ -0,0 +1,36 @@ +package demo.domain; + +import org.springframework.hateoas.ResourceSupport; + +public class AbstractEntity extends ResourceSupport { + + private Long createdAt; + private Long lastModified; + + public AbstractEntity() { + } + + public Long getCreatedAt() { + return createdAt; + } + + public void setCreatedAt(Long createdAt) { + this.createdAt = createdAt; + } + + public Long getLastModified() { + return lastModified; + } + + public void setLastModified(Long lastModified) { + this.lastModified = lastModified; + } + + @Override + public String toString() { + return "BaseEntity{" + + "createdAt=" + createdAt + + ", lastModified=" + lastModified + + "} " + super.toString(); + } +} diff --git a/platform-services/stream-modules/load-simulator/src/main/java/demo/domain/Address.java b/platform-services/stream-modules/load-simulator/src/main/java/demo/domain/Address.java new file mode 100644 index 0000000..f6ddf55 --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/java/demo/domain/Address.java @@ -0,0 +1,101 @@ +package demo.domain; + +import java.io.Serializable; + +public class Address implements Serializable { + private String street1, street2, state, city, country; + private Integer zipCode; + private AddressType addressType; + + public Address() { + } + + public Address(String street1, String street2, String state, + String city, String country, Integer zipCode) { + this.street1 = street1; + this.street2 = street2; + this.state = state; + this.city = city; + this.country = country; + this.zipCode = zipCode; + } + + public Address(String street1, String street2, String state, + String city, String country, Integer zipCode, AddressType addressType) { + this.street1 = street1; + this.street2 = street2; + this.state = state; + this.city = city; + this.country = country; + this.zipCode = zipCode; + this.addressType = addressType; + } + + public String getStreet1() { + return street1; + } + + public void setStreet1(String street1) { + this.street1 = street1; + } + + public String getStreet2() { + return street2; + } + + public void setStreet2(String street2) { + this.street2 = street2; + } + + public String getState() { + return state; + } + + public void setState(String state) { + this.state = state; + } + + public String getCity() { + return city; + } + + public void setCity(String city) { + this.city = city; + } + + public String getCountry() { + return country; + } + + public void setCountry(String country) { + this.country = country; + } + + public Integer getZipCode() { + return zipCode; + } + + public void setZipCode(Integer zipCode) { + this.zipCode = zipCode; + } + + public AddressType getAddressType() { + return addressType; + } + + public void setAddressType(AddressType addressType) { + this.addressType = addressType; + } + + @Override + public String toString() { + return "Address{" + + "street1='" + street1 + '\'' + + ", street2='" + street2 + '\'' + + ", state='" + state + '\'' + + ", city='" + city + '\'' + + ", country='" + country + '\'' + + ", zipCode=" + zipCode + + '}'; + } +} diff --git a/platform-services/stream-modules/load-simulator/src/main/java/demo/domain/AddressType.java b/platform-services/stream-modules/load-simulator/src/main/java/demo/domain/AddressType.java new file mode 100644 index 0000000..85f1a43 --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/java/demo/domain/AddressType.java @@ -0,0 +1,6 @@ +package demo.domain; + +public enum AddressType { + SHIPPING, + BILLING +} diff --git a/platform-services/stream-modules/load-simulator/src/main/java/demo/inventory/domain/Inventory.java b/platform-services/stream-modules/load-simulator/src/main/java/demo/inventory/domain/Inventory.java new file mode 100644 index 0000000..c012199 --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/java/demo/inventory/domain/Inventory.java @@ -0,0 +1,64 @@ +package demo.inventory.domain; + +import com.fasterxml.jackson.annotation.JsonProperty; +import demo.domain.AbstractEntity; +import org.springframework.hateoas.Link; + +import java.util.ArrayList; +import java.util.List; + +public class Inventory extends AbstractEntity { + private Long id; + private InventoryStatus status; + private List events = new ArrayList<>(); + private String productId; + + public Inventory() { + } + + public Inventory(InventoryStatus status, String productId) { + this.status = status; + this.productId = productId; + } + + @JsonProperty("inventoryId") + public Long getIdentity() { + return this.id; + } + + public void setIdentity(Long id) { + this.id = id; + } + + public InventoryStatus getStatus() { + return status; + } + + public void setStatus(InventoryStatus status) { + this.status = status; + } + + public List getEvents() { + return events; + } + + public void setEvents(List events) { + this.events = events; + } + + public String getProductId() { + return productId; + } + + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * Returns the {@link Link} with a rel of {@link Link#REL_SELF}. + */ + @Override + public Link getId() { + return getLink("self"); + } +} diff --git a/platform-services/stream-modules/load-simulator/src/main/java/demo/inventory/domain/InventoryEvent.java b/platform-services/stream-modules/load-simulator/src/main/java/demo/inventory/domain/InventoryEvent.java new file mode 100644 index 0000000..c510f2a --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/java/demo/inventory/domain/InventoryEvent.java @@ -0,0 +1,36 @@ +package demo.inventory.domain; + +import demo.domain.AbstractEntity; + +/** + * The domain event {@link InventoryEvent} tracks the type and state of events as applied to the {@link Inventory} domain + * object. This event resource can be used to event source the aggregate state of {@link Inventory}. + * + * @author kbastani + */ +public class InventoryEvent extends AbstractEntity { + + private InventoryEventType type; + + public InventoryEvent() { + } + + public InventoryEvent(InventoryEventType type) { + this.type = type; + } + + public InventoryEventType getType() { + return type; + } + + public void setType(InventoryEventType type) { + this.type = type; + } + + @Override + public String toString() { + return "InventoryEvent{" + + "type=" + type + + "} " + super.toString(); + } +} diff --git a/platform-services/stream-modules/load-simulator/src/main/java/demo/inventory/domain/InventoryEventType.java b/platform-services/stream-modules/load-simulator/src/main/java/demo/inventory/domain/InventoryEventType.java new file mode 100644 index 0000000..956b825 --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/java/demo/inventory/domain/InventoryEventType.java @@ -0,0 +1,15 @@ +package demo.inventory.domain; + +/** + * The {@link InventoryEventType} represents a collection of possible events that describe state transitions of + * {@link InventoryStatus} on the {@link Inventory} aggregate. + * + * @author Kenny Bastani + */ +public enum InventoryEventType { + INVENTORY_CREATED, + RESERVATION_PENDING, + RESERVATION_CONNECTED, + INVENTORY_RESERVED, + INVENTORY_RELEASED +} diff --git a/platform-services/stream-modules/load-simulator/src/main/java/demo/inventory/domain/InventoryEvents.java b/platform-services/stream-modules/load-simulator/src/main/java/demo/inventory/domain/InventoryEvents.java new file mode 100644 index 0000000..89c7e86 --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/java/demo/inventory/domain/InventoryEvents.java @@ -0,0 +1,7 @@ +package demo.inventory.domain; + +import org.springframework.hateoas.Resources; + +public class InventoryEvents extends Resources { + +} diff --git a/platform-services/stream-modules/load-simulator/src/main/java/demo/inventory/domain/InventoryStatus.java b/platform-services/stream-modules/load-simulator/src/main/java/demo/inventory/domain/InventoryStatus.java new file mode 100644 index 0000000..85714f7 --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/java/demo/inventory/domain/InventoryStatus.java @@ -0,0 +1,9 @@ +package demo.inventory.domain; + +public enum InventoryStatus { + INVENTORY_CREATED, + RESERVATION_PENDING, + RESERVATION_CONNECTED, + INVENTORY_RESERVED, + INVENTORY_RELEASED +} diff --git a/platform-services/stream-modules/load-simulator/src/main/java/demo/order/domain/LineItem.java b/platform-services/stream-modules/load-simulator/src/main/java/demo/order/domain/LineItem.java new file mode 100644 index 0000000..f63f73d --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/java/demo/order/domain/LineItem.java @@ -0,0 +1,71 @@ +package demo.order.domain; + +public class LineItem { + + private String name, productId; + private Integer quantity; + private Double price, tax; + + public LineItem() { + } + + public LineItem(String name, String productId, Integer quantity, + Double price, Double tax) { + this.name = name; + this.productId = productId; + this.quantity = quantity; + this.price = price; + this.tax = tax; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getProductId() { + return productId; + } + + public void setProductId(String productId) { + this.productId = productId; + } + + public Integer getQuantity() { + return quantity; + } + + public void setQuantity(Integer quantity) { + this.quantity = quantity; + } + + public Double getPrice() { + return price; + } + + public void setPrice(Double price) { + this.price = price; + } + + public Double getTax() { + return tax; + } + + public void setTax(Double tax) { + this.tax = tax; + } + + @Override + public String toString() { + return "LineItem{" + + "name='" + name + '\'' + + ", productId='" + productId + '\'' + + ", quantity=" + quantity + + ", price=" + price + + ", tax=" + tax + + '}'; + } +} \ No newline at end of file diff --git a/platform-services/stream-modules/load-simulator/src/main/java/demo/order/domain/Order.java b/platform-services/stream-modules/load-simulator/src/main/java/demo/order/domain/Order.java new file mode 100644 index 0000000..44beb41 --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/java/demo/order/domain/Order.java @@ -0,0 +1,119 @@ +package demo.order.domain; + +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.annotation.JsonProperty; +import demo.domain.Address; +import demo.domain.AddressType; +import org.springframework.hateoas.Link; +import org.springframework.hateoas.TemplateVariable; +import org.springframework.hateoas.UriTemplate; + +import java.util.ArrayList; +import java.util.HashSet; +import java.util.List; +import java.util.Set; + +public class Order { + + private Long id; + private Long createdAt; + private Long lastModified; + private List orderEvents = new ArrayList<>(); + private OrderStatus status; + private Set lineItems = new HashSet<>(); + private Address shippingAddress; + + private Long accountId, paymentId; + + public Order() { + this.status = OrderStatus.ORDER_CREATED; + } + + public Order(Long accountId, Address shippingAddress) { + this(); + this.accountId = accountId; + this.shippingAddress = shippingAddress; + if (shippingAddress.getAddressType() == null) + this.shippingAddress.setAddressType(AddressType.SHIPPING); + } + + public Long getCreatedAt() { + return createdAt; + } + + public void setCreatedAt(Long createdAt) { + this.createdAt = createdAt; + } + + public Long getLastModified() { + return lastModified; + } + + public void setLastModified(Long lastModified) { + this.lastModified = lastModified; + } + + public OrderStatus getStatus() { + return status; + } + + public void setStatus(OrderStatus status) { + this.status = status; + } + + public Set getLineItems() { + return lineItems; + } + + public void setLineItems(Set lineItems) { + this.lineItems = lineItems; + } + + public Address getShippingAddress() { + return shippingAddress; + } + + public void setShippingAddress(Address shippingAddress) { + this.shippingAddress = shippingAddress; + } + + public Long getAccountId() { + return accountId; + } + + public void setAccountId(Long accountId) { + this.accountId = accountId; + } + + public Long getPaymentId() { + return paymentId; + } + + public void setPaymentId(Long paymentId) { + this.paymentId = paymentId; + } + + @JsonIgnore + public List getEvents() { + return orderEvents; + } + + @JsonProperty("orderId") + public Long getIdentity() { + return id; + } + + public void setIdentity(Long id) { + this.id = id; + } + + /** + * Returns the {@link Link} with a rel of {@link Link#REL_SELF}. + */ + public Link getId() { + return new Link(new UriTemplate("http://order-web/v1/orders/{id}").with("id", TemplateVariable.VariableType + .PATH_VARIABLE) + .expand(getIdentity()) + .toString()).withSelfRel(); + } +} diff --git a/platform-services/stream-modules/load-simulator/src/main/java/demo/order/domain/OrderEvent.java b/platform-services/stream-modules/load-simulator/src/main/java/demo/order/domain/OrderEvent.java new file mode 100644 index 0000000..857451e --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/java/demo/order/domain/OrderEvent.java @@ -0,0 +1,83 @@ +package demo.order.domain; + +import com.fasterxml.jackson.annotation.JsonIgnore; + +/** + * The domain event {@link OrderEvent} tracks the type and state of events as applied to the {@link Order} domain + * object. This event resource can be used to event source the aggregate state of {@link Order}. + *

+ * This event resource also provides a transaction log that can be used to append actions to the event. + * + * @author Kenny Bastani + */ +public class OrderEvent { + + private Long eventId; + private OrderEventType type; + @JsonIgnore + private Order order; + private Long createdAt, lastModified; + + public OrderEvent() { + } + + public OrderEvent(OrderEventType type) { + this.type = type; + } + + public OrderEvent(OrderEventType type, Order order) { + this.type = type; + this.order = order; + } + + public Long getEventId() { + return eventId; + } + + public void setEventId(Long id) { + eventId = id; + } + + public OrderEventType getType() { + return type; + } + + public void setType(OrderEventType type) { + this.type = type; + } + + public Order getEntity() { + return order; + } + + public void setEntity(Order entity) { + this.order = entity; + } + + public Long getCreatedAt() { + return createdAt; + } + + public void setCreatedAt(Long createdAt) { + this.createdAt = createdAt; + } + + public Long getLastModified() { + return lastModified; + } + + public void setLastModified(Long lastModified) { + this.lastModified = lastModified; + } + + @Override + public String toString() { + return "OrderEvent{" + + "eventId=" + eventId + + ", type=" + type + + ", order=" + order + + ", createdAt=" + createdAt + + ", lastModified=" + lastModified + + "} " + super.toString(); + } +} diff --git a/platform-services/stream-modules/load-simulator/src/main/java/demo/order/domain/OrderEventType.java b/platform-services/stream-modules/load-simulator/src/main/java/demo/order/domain/OrderEventType.java new file mode 100644 index 0000000..063c874 --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/java/demo/order/domain/OrderEventType.java @@ -0,0 +1,21 @@ +package demo.order.domain; + +/** + * The {@link OrderEventType} represents a collection of possible events that describe state transitions of + * {@link OrderStatus} on the {@link Order} aggregate. + * + * @author Kenny Bastani + */ +public enum OrderEventType { + ORDER_CREATED, + ACCOUNT_CONNECTED, + RESERVATION_PENDING, + INVENTORY_RESERVED, + RESERVATION_SUCCEEDED, + RESERVATION_FAILED, + PAYMENT_CREATED, + PAYMENT_CONNECTED, + PAYMENT_PENDING, + PAYMENT_SUCCEEDED, + PAYMENT_FAILED +} diff --git a/platform-services/stream-modules/load-simulator/src/main/java/demo/order/domain/OrderStatus.java b/platform-services/stream-modules/load-simulator/src/main/java/demo/order/domain/OrderStatus.java new file mode 100644 index 0000000..d12f0cd --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/java/demo/order/domain/OrderStatus.java @@ -0,0 +1,17 @@ +package demo.order.domain; + +public enum OrderStatus { + ORDER_CREATED, + ACCOUNT_CONNECTED, + RESERVATION_PENDING, + INVENTORY_RESERVED, + RESERVATION_SUCCEEDED, + RESERVATION_FAILED, + PAYMENT_CREATED, + PAYMENT_CONNECTED, + PAYMENT_PENDING, + PAYMENT_SUCCEEDED, + PAYMENT_FAILED, + ORDER_SUCCEEDED, + ORDER_FAILED +} diff --git a/platform-services/stream-modules/load-simulator/src/main/java/demo/order/domain/Orders.java b/platform-services/stream-modules/load-simulator/src/main/java/demo/order/domain/Orders.java new file mode 100644 index 0000000..4e1e8e8 --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/java/demo/order/domain/Orders.java @@ -0,0 +1,23 @@ +package demo.order.domain; + +import org.springframework.hateoas.Link; +import org.springframework.hateoas.Resources; + +public class Orders extends Resources { + + /** + * Creates an empty {@link Resources} instance. + */ + public Orders() { + } + + /** + * Creates a {@link Resources} instance with the given content and {@link Link}s (optional). + * + * @param content must not be {@literal null}. + * @param links the links to be added to the {@link Resources}. + */ + public Orders(Iterable content, Link... links) { + super(content, links); + } +} diff --git a/platform-services/stream-modules/load-simulator/src/main/java/demo/order/service/OrderService.java b/platform-services/stream-modules/load-simulator/src/main/java/demo/order/service/OrderService.java new file mode 100644 index 0000000..d6ec015 --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/java/demo/order/service/OrderService.java @@ -0,0 +1,109 @@ +package demo.order.service; + +import com.fasterxml.jackson.databind.ObjectMapper; +import demo.order.domain.Order; +import demo.order.domain.Orders; +import org.apache.log4j.Logger; +import org.springframework.hateoas.TemplateVariable; +import org.springframework.hateoas.UriTemplate; +import org.springframework.http.HttpMethod; +import org.springframework.http.RequestEntity; +import org.springframework.web.client.RestClientResponseException; +import org.springframework.web.client.RestTemplate; + +import java.io.IOException; +import java.util.HashMap; +import java.util.Map; + +@org.springframework.stereotype.Service +public class OrderService { + + private final Logger log = Logger.getLogger(this.getClass()); + private final RestTemplate restTemplate; + + public OrderService(RestTemplate restTemplate) { + this.restTemplate = restTemplate; + } + + public Order get(Long orderId) { + Order result; + try { + result = restTemplate.getForObject(new UriTemplate("http://order-web/v1/orders/{id}") + .with("id", TemplateVariable.VariableType.PATH_VARIABLE) + .expand(orderId), Order.class); + } catch (RestClientResponseException ex) { + log.error("Get order failed", ex); + throw new IllegalStateException(getHttpStatusMessage(ex), ex); + } + + return result; + } + + public Order create(Order order) { + Order result; + try { + result = restTemplate.postForObject(new UriTemplate("http://order-web/v1/orders").expand(), + order, Order.class); + } catch (RestClientResponseException ex) { + log.error("Create order failed", ex); + throw new IllegalStateException(getHttpStatusMessage(ex), ex); + } + + return result; + } + + public Order update(Order order) { + Order result; + try { + result = restTemplate.exchange(new RequestEntity<>(order, HttpMethod.PUT, + new UriTemplate("http://order-web/v1/orders/{id}") + .with("id", TemplateVariable.VariableType.PATH_VARIABLE) + .expand(order.getIdentity())), Order.class).getBody(); + } catch (RestClientResponseException ex) { + log.error("Update order failed", ex); + throw new IllegalStateException(getHttpStatusMessage(ex), ex); + } + + return result; + } + + public boolean delete(Long orderId) { + try { + restTemplate.delete(new UriTemplate("http://order-web/v1/orders/{id}") + .with("id", TemplateVariable.VariableType.PATH_VARIABLE).expand(orderId)); + } catch (RestClientResponseException ex) { + log.error("Delete order failed", ex); + throw new IllegalStateException(getHttpStatusMessage(ex), ex); + } + + return true; + } + + public Orders findOrdersByAccountId(Long accountId) { + Orders result; + try { + result = restTemplate + .getForObject(new UriTemplate("http://order-web/v1/orders/search/findOrdersByAccountId") + .with("accountId", TemplateVariable.VariableType.REQUEST_PARAM) + .expand(accountId), Orders.class); + } catch (RestClientResponseException ex) { + log.error("Delete order failed", ex); + throw new IllegalStateException(getHttpStatusMessage(ex), ex); + } + + return result; + } + + private String getHttpStatusMessage(RestClientResponseException ex) { + Map errorMap = new HashMap<>(); + try { + errorMap = new ObjectMapper() + .readValue(ex.getResponseBodyAsString(), errorMap + .getClass()); + } catch (IOException e) { + e.printStackTrace(); + } + + return errorMap.getOrDefault("message", null); + } +} diff --git a/platform-services/stream-modules/load-simulator/src/main/java/demo/warehouse/domain/Warehouse.java b/platform-services/stream-modules/load-simulator/src/main/java/demo/warehouse/domain/Warehouse.java new file mode 100644 index 0000000..a1e7d77 --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/java/demo/warehouse/domain/Warehouse.java @@ -0,0 +1,76 @@ +package demo.warehouse.domain; + +import com.fasterxml.jackson.annotation.JsonProperty; +import demo.domain.AbstractEntity; +import demo.domain.Address; +import org.springframework.hateoas.Link; +import org.springframework.hateoas.TemplateVariable; +import org.springframework.hateoas.UriTemplate; + +import java.util.ArrayList; +import java.util.List; + +public class Warehouse extends AbstractEntity { + + private Long id; + private List events = new ArrayList<>(); + private Address address; + private WarehouseStatus status; + + public Warehouse() { + } + + public Warehouse(Address address) { + this.address = address; + } + + public Address getAddress() { + return address; + } + + public void setAddress(Address address) { + this.address = address; + } + + public WarehouseStatus getStatus() { + return status; + } + + public void setStatus(WarehouseStatus status) { + this.status = status; + } + + @JsonProperty("warehouseId") + public Long getIdentity() { + return id; + } + + public void setIdentity(Long id) { + this.id = id; + } + + public List getEvents() { + return events; + } + + /** + * Returns the {@link Link} with a rel of {@link Link#REL_SELF}. + */ + @Override + public Link getId() { + return new Link(new UriTemplate("http://warehouse-web/v1/warehouses/{id}") + .with("id", TemplateVariable.VariableType.PATH_VARIABLE) + .expand(getIdentity()) + .toString()).withSelfRel(); + } + + @Override + public String toString() { + return "Warehouse{" + + "id=" + id + + ", events=" + events + + ", address=" + address + + ", status=" + status + + "} " + super.toString(); + } +} diff --git a/platform-services/stream-modules/load-simulator/src/main/java/demo/warehouse/domain/WarehouseEvent.java b/platform-services/stream-modules/load-simulator/src/main/java/demo/warehouse/domain/WarehouseEvent.java new file mode 100644 index 0000000..ca00e0d --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/java/demo/warehouse/domain/WarehouseEvent.java @@ -0,0 +1,79 @@ +package demo.warehouse.domain; + +/** + * The domain event {@link WarehouseEvent} tracks the type and state of events as applied to the {@link Warehouse} + * domain + * object. This event resource can be used to event source the aggregate state of {@link Warehouse}. + * + * @author kbastani + */ +public class WarehouseEvent { + + private Long eventId; + private WarehouseEventType type; + private Warehouse entity; + private Long createdAt; + private Long lastModified; + + public WarehouseEvent() { + } + + public WarehouseEvent(WarehouseEventType type) { + this.type = type; + } + + public WarehouseEvent(WarehouseEventType type, Warehouse entity) { + this.type = type; + this.entity = entity; + } + + public Long getEventId() { + return eventId; + } + + public void setEventId(Long id) { + eventId = id; + } + + public WarehouseEventType getType() { + return type; + } + + public void setType(WarehouseEventType type) { + this.type = type; + } + + public Warehouse getEntity() { + return entity; + } + + public void setEntity(Warehouse entity) { + this.entity = entity; + } + + public Long getCreatedAt() { + return createdAt; + } + + public void setCreatedAt(Long createdAt) { + this.createdAt = createdAt; + } + + public Long getLastModified() { + return lastModified; + } + + public void setLastModified(Long lastModified) { + this.lastModified = lastModified; + } + + public String toString() { + return "WarehouseEvent{" + + "eventId=" + eventId + + ", type=" + type + + ", entity=" + entity + + ", createdAt=" + createdAt + + ", lastModified=" + lastModified + + "} " + super.toString(); + } +} diff --git a/platform-services/stream-modules/load-simulator/src/main/java/demo/warehouse/domain/WarehouseEventType.java b/platform-services/stream-modules/load-simulator/src/main/java/demo/warehouse/domain/WarehouseEventType.java new file mode 100644 index 0000000..d760a27 --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/java/demo/warehouse/domain/WarehouseEventType.java @@ -0,0 +1,11 @@ +package demo.warehouse.domain; + +/** + * The {@link WarehouseEventType} represents a collection of possible events that describe state transitions of + * {@link WarehouseStatus} on the {@link Warehouse} aggregate. + * + * @author Kenny Bastani + */ +public enum WarehouseEventType { + WAREHOUSE_CREATED +} diff --git a/platform-services/stream-modules/load-simulator/src/main/java/demo/warehouse/domain/WarehouseStatus.java b/platform-services/stream-modules/load-simulator/src/main/java/demo/warehouse/domain/WarehouseStatus.java new file mode 100644 index 0000000..ead5684 --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/java/demo/warehouse/domain/WarehouseStatus.java @@ -0,0 +1,5 @@ +package demo.warehouse.domain; + +public enum WarehouseStatus { + WAREHOUSE_CREATED +} diff --git a/platform-services/stream-modules/load-simulator/src/main/java/demo/warehouse/domain/Warehouses.java b/platform-services/stream-modules/load-simulator/src/main/java/demo/warehouse/domain/Warehouses.java new file mode 100644 index 0000000..bfd1962 --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/java/demo/warehouse/domain/Warehouses.java @@ -0,0 +1,23 @@ +package demo.warehouse.domain; + +import org.springframework.hateoas.Link; +import org.springframework.hateoas.Resources; + +public class Warehouses extends Resources { + + /** + * Creates an empty {@link Resources} instance. + */ + public Warehouses() { + } + + /** + * Creates a {@link Resources} instance with the given content and {@link Link}s (optional). + * + * @param content must not be {@literal null}. + * @param links the links to be added to the {@link Resources}. + */ + public Warehouses(Iterable content, Link... links) { + super(content, links); + } +} diff --git a/platform-services/stream-modules/load-simulator/src/main/java/demo/warehouse/service/WarehouseService.java b/platform-services/stream-modules/load-simulator/src/main/java/demo/warehouse/service/WarehouseService.java new file mode 100644 index 0000000..ab9cdb5 --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/java/demo/warehouse/service/WarehouseService.java @@ -0,0 +1,112 @@ +package demo.warehouse.service; + +import com.fasterxml.jackson.databind.ObjectMapper; +import demo.inventory.domain.Inventory; +import demo.warehouse.domain.Warehouse; +import org.apache.log4j.Logger; +import org.springframework.hateoas.TemplateVariable; +import org.springframework.hateoas.UriTemplate; +import org.springframework.http.HttpMethod; +import org.springframework.http.RequestEntity; +import org.springframework.web.client.RestClientResponseException; +import org.springframework.web.client.RestTemplate; + +import java.io.IOException; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +@org.springframework.stereotype.Service +public class WarehouseService { + + private final Logger log = Logger.getLogger(this.getClass()); + private final RestTemplate restTemplate; + + public WarehouseService(RestTemplate restTemplate) { + this.restTemplate = restTemplate; + } + + public Warehouse get(Long warehouseId) { + Warehouse result; + try { + result = restTemplate.getForObject(new UriTemplate("http://warehouse-web/v1/warehouses/{id}") + .with("id", TemplateVariable.VariableType.PATH_VARIABLE) + .expand(warehouseId), Warehouse.class); + } catch (RestClientResponseException ex) { + log.error("Get warehouse failed", ex); + throw new IllegalStateException(getHttpStatusMessage(ex), ex); + } + + return result; + } + + public Warehouse create(Warehouse warehouse) { + Warehouse result; + try { + result = restTemplate.postForObject(new UriTemplate("http://warehouse-web/v1/warehouses").expand(), + warehouse, Warehouse.class); + } catch (RestClientResponseException ex) { + log.error("Create warehouse failed", ex); + throw new IllegalStateException(getHttpStatusMessage(ex), ex); + } + + return result; + } + + public Warehouse update(Warehouse warehouse) { + Warehouse result; + try { + result = restTemplate.exchange(new RequestEntity<>(warehouse, HttpMethod.PUT, + new UriTemplate("http://warehouse-web/v1/warehouses/{id}") + .with("id", TemplateVariable.VariableType.PATH_VARIABLE) + .expand(warehouse.getIdentity())), Warehouse.class).getBody(); + } catch (RestClientResponseException ex) { + log.error("Update warehouse failed", ex); + throw new IllegalStateException(getHttpStatusMessage(ex), ex); + } + + return result; + } + + public boolean delete(Long warehouseId) { + try { + restTemplate.delete(new UriTemplate("http://warehouse-web/v1/warehouses/{id}") + .with("id", TemplateVariable.VariableType.PATH_VARIABLE).expand(warehouseId)); + } catch (RestClientResponseException ex) { + log.error("Delete warehouse failed", ex); + throw new IllegalStateException(getHttpStatusMessage(ex), ex); + } + + return true; + } + + public List addInventory(List inventory, Long warehouseId) { + List result = new ArrayList<>(); + try { + inventory.parallelStream().forEach(item -> { + result.add(restTemplate.postForObject(new UriTemplate(String + .format("http://warehouse-web/v1/warehouses/%s/inventory", warehouseId)) + .expand(), item, Inventory.class)); + }); + } catch (RestClientResponseException ex) { + log.error("Add warehouse inventory failed", ex); + throw new IllegalStateException(getHttpStatusMessage(ex), ex); + } + + return result; + } + + private String getHttpStatusMessage(RestClientResponseException ex) { + Map errorMap = new HashMap<>(); + try { + errorMap = new ObjectMapper() + .readValue(ex.getResponseBodyAsString(), errorMap + .getClass()); + } catch (IOException e) { + e.printStackTrace(); + } + + return errorMap.getOrDefault("message", null); + } +} diff --git a/platform-services/stream-modules/load-simulator/src/main/resources/application.yml b/platform-services/stream-modules/load-simulator/src/main/resources/application.yml new file mode 100644 index 0000000..7b3c579 --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/resources/application.yml @@ -0,0 +1,45 @@ +spring: + profiles: + active: development +server: + port: 0 +--- +spring: + profiles: development +eureka: + client: + service-url: + defaultZone: http://localhost:8761/eureka +--- +spring: + profiles: docker +eureka: + client: + service-url: + defaultZone: http://${DOCKER_IP:192.168.99.100}:8761/eureka + registryFetchIntervalSeconds: 5 + instance: + hostname: ${DOCKER_IP:192.168.99.100} + instance-id: ${spring.application.name}:${random.int} + leaseRenewalIntervalInSeconds: 5 +--- +spring: + profiles: test +eureka: + client: + enabled: false +--- +spring: + profiles: cloud +eureka: + instance: + hostname: ${vcap.application.uris[0]:localhost} + nonSecurePort: 80 + metadataMap: + instanceId: ${vcap.application.instance_id:${spring.application.name}:${spring.application.instance_id:${server.port}}} + leaseRenewalIntervalInSeconds: 5 + client: + region: default + registryFetchIntervalSeconds: 5 + serviceUrl: + defaultZone: ${vcap.services.discovery-service.credentials.uri:http://localhost:8761}/eureka/ diff --git a/platform-services/stream-modules/load-simulator/src/main/resources/bootstrap.yml b/platform-services/stream-modules/load-simulator/src/main/resources/bootstrap.yml new file mode 100644 index 0000000..ddd1cb0 --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/main/resources/bootstrap.yml @@ -0,0 +1,4 @@ +spring: + application: + name: load-simulator +--- \ No newline at end of file diff --git a/platform-services/stream-modules/load-simulator/src/test/java/demo/DateTimeTests.java b/platform-services/stream-modules/load-simulator/src/test/java/demo/DateTimeTests.java new file mode 100644 index 0000000..d8a31e0 --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/test/java/demo/DateTimeTests.java @@ -0,0 +1,26 @@ +package demo; + +import com.fasterxml.jackson.databind.node.JsonNodeFactory; +import org.joda.time.DateTime; +import org.joda.time.format.DateTimeFormat; +import org.joda.time.format.DateTimeFormatter; +import org.junit.Test; +import org.springframework.expression.spel.standard.SpelExpressionParser; +import org.springframework.integration.json.JsonPropertyAccessor; + +import java.text.ParseException; + +public class DateTimeTests { + + @Test + public void testDateTime() throws ParseException { + DateTimeFormatter dateFormatter = DateTimeFormat.forPattern("yyyy-MM-dd'T'HH:mm:ss.SSS"); + + System.out.print(new SpelExpressionParser().parseRaw("new org.joda.time.DateTime(new java.lang.Long('1487145898898')).toLocalDateTime().toString()").getValue()); + dateFormatter.parseDateTime(new DateTime(new Long("1487145898898")).toLocalDateTime().toString()); + + JsonPropertyAccessor.ToStringFriendlyJsonNode jsonNode = new JsonPropertyAccessor.ToStringFriendlyJsonNode(JsonNodeFactory.instance.textNode("test")); + + new SpelExpressionParser().parseExpression("toString()").getValue(jsonNode, CharSequence.class); + } +} diff --git a/platform-services/stream-modules/load-simulator/src/test/java/demo/LoadSimulatorApplicationTests.java b/platform-services/stream-modules/load-simulator/src/test/java/demo/LoadSimulatorApplicationTests.java new file mode 100644 index 0000000..87dd18d --- /dev/null +++ b/platform-services/stream-modules/load-simulator/src/test/java/demo/LoadSimulatorApplicationTests.java @@ -0,0 +1,18 @@ +package demo; + +import org.junit.Test; +import org.junit.runner.RunWith; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.test.context.ActiveProfiles; +import org.springframework.test.context.junit4.SpringRunner; + +@RunWith(SpringRunner.class) +@SpringBootTest +@ActiveProfiles("test") +public class LoadSimulatorApplicationTests { + + @Test + public void contextLoads() { + } + +} diff --git a/platform-services/stream-modules/pom.xml b/platform-services/stream-modules/pom.xml new file mode 100644 index 0000000..71c81ba --- /dev/null +++ b/platform-services/stream-modules/pom.xml @@ -0,0 +1,29 @@ + + + 4.0.0 + + stream-modules + 1.0-SNAPSHOT + pom + + stream-modules + + + org.kbastani + platform-services + 1.0-SNAPSHOT + ../ + + + + UTF-8 + UTF-8 + 1.8 + + + + load-simulator + + \ No newline at end of file diff --git a/ui/dashboard/src/main/java/demo/DashboardApplication.java b/ui/dashboard/src/main/java/demo/DashboardApplication.java index 8ff4eb1..3560ce6 100644 --- a/ui/dashboard/src/main/java/demo/DashboardApplication.java +++ b/ui/dashboard/src/main/java/demo/DashboardApplication.java @@ -2,8 +2,11 @@ package demo; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; +import org.springframework.cloud.client.loadbalancer.LoadBalanced; import org.springframework.cloud.netflix.eureka.EnableEurekaClient; import org.springframework.cloud.netflix.zuul.EnableZuulProxy; +import org.springframework.context.annotation.Bean; +import org.springframework.web.client.RestTemplate; @SpringBootApplication @EnableEurekaClient @@ -13,4 +16,10 @@ public class DashboardApplication { public static void main(String[] args) { SpringApplication.run(DashboardApplication.class, args); } + + @Bean + @LoadBalanced + public RestTemplate restTemplate() { + return new RestTemplate(); + } } diff --git a/ui/dashboard/src/main/resources/application.yml b/ui/dashboard/src/main/resources/application.yml index b4b2074..03b74ab 100644 --- a/ui/dashboard/src/main/resources/application.yml +++ b/ui/dashboard/src/main/resources/application.yml @@ -12,6 +12,10 @@ zuul: account-web: /account/** warehouse-web: /warehouse/** order-web: /order/** +eureka: + client: + service-url: + defaultZone: http://localhost:8761/eureka --- spring: profiles: docker @@ -20,6 +24,7 @@ zuul: routes: account-web: /account/** warehouse-web: /warehouse/** + order-web: /order/** eureka: client: service-url: diff --git a/ui/dashboard/src/main/resources/static/index.html b/ui/dashboard/src/main/resources/static/index.html index 0f02592..5d0652c 100644 --- a/ui/dashboard/src/main/resources/static/index.html +++ b/ui/dashboard/src/main/resources/static/index.html @@ -67,6 +67,7 @@ + diff --git a/ui/dashboard/src/main/resources/static/src/js/client/api/accountApi.js b/ui/dashboard/src/main/resources/static/src/js/client/api/accountApi.js index 5ca6b35..8f78b48 100644 --- a/ui/dashboard/src/main/resources/static/src/js/client/api/accountApi.js +++ b/ui/dashboard/src/main/resources/static/src/js/client/api/accountApi.js @@ -117,12 +117,17 @@ var loadAccount = function (id, callback) { $.each(document._links, function (k, v) { var commandBtn = $("

" + "" + "
"); $(commandBtn).click(function () { - appDispatcher.handle(generate("GET", null, $(this).find(".command-href").val()), function (cmd) { - accountStatus = cmd.status; - updateAccountStatus(accountStatus); - $(formSelect).text(''); - $(formSelect).jsonForm(accountForm.apply(formSelect, cmd)); - }); + if (k != "postOrder") { + appDispatcher.handle(generate("GET", null, $(this).find(".command-href").val()), function (cmd) { + accountStatus = cmd.status; + updateAccountStatus(accountStatus); + $(formSelect).text(''); + $(formSelect).jsonForm(accountForm.apply(formSelect, cmd)); + }); + } else { + postOrderCommand($(this).find(".command-href").val()); + } + }); $(commandSelect).append(commandBtn); }); diff --git a/ui/dashboard/src/main/resources/static/src/js/client/api/orderApi.js b/ui/dashboard/src/main/resources/static/src/js/client/api/orderApi.js index 4065b79..5b3d065 100644 --- a/ui/dashboard/src/main/resources/static/src/js/client/api/orderApi.js +++ b/ui/dashboard/src/main/resources/static/src/js/client/api/orderApi.js @@ -227,7 +227,9 @@ var loadOrder = function (id, callback) { updateOrderStatus(eventList[0].type); callback(); } else if (lastOrderSize < eventList.length) { - appendRow(".order-events", eventList.filter(function (x) { + appendRow(".order-events", eventList.sort(function (a, b) { + return a.createdAt - b.createdAt; + }).filter(function (x) { return eventList.indexOf(x) > lastOrderSize - 1; }), true, updateOrderStatus); lastOrderSize = eventList.length; @@ -318,12 +320,14 @@ var renderOrderFlow = function (callback, orderStatus) { }); g.setEdge(2, 3, { label: "RESERVATION_ADDED", - minlen: 2 + minlen: 1 }); g.setEdge(3, 4, { - label: "RESERVATION_SUCCEEDED" + label: "RESERVATION_SUCCEEDED", + labelpos: 'r', + minlen: 2 }); - g.setEdge(2, 8, { + g.setEdge(3, 8, { label: "RESERVATION_FAILED", labelpos: 'l' }); @@ -366,7 +370,7 @@ var renderOrderFlow = function (callback, orderStatus) { inner.call(render, g); var draw = function (isUpdate) { var graphWidth = g.graph().width + 35; - var graphHeight = g.graph().height + 200; + var graphHeight = g.graph().height + 100; var width = parseInt(svg.style("width").replace(/px/, "")); var height = parseInt(svg.style("height").replace(/px/, "")); var zoomScale = Math.min(width / graphWidth, height / graphHeight); diff --git a/ui/dashboard/src/main/resources/static/src/js/client/api/warehouseApi.js b/ui/dashboard/src/main/resources/static/src/js/client/api/warehouseApi.js index 3d13aef..a825c62 100644 --- a/ui/dashboard/src/main/resources/static/src/js/client/api/warehouseApi.js +++ b/ui/dashboard/src/main/resources/static/src/js/client/api/warehouseApi.js @@ -13,6 +13,15 @@ var warehouseApi = { } }; +var inventoryApi = { + get: function (id, callback) { + appDispatcher.handle(generate("GET", null, "/warehouse/v1/warehouses/" + id + "/inventory"), callback); + }, + post: function (id, body, callback) { + appDispatcher.handle(generate("POST", body, "/warehouse/v1/warehouses/" + id + "/inventory"), callback); + } +}; + var warehouseForm = { apply: function (selector, value) { return { diff --git a/ui/dashboard/src/main/resources/static/src/js/client/dispatcher/dispatcher.js b/ui/dashboard/src/main/resources/static/src/js/client/dispatcher/dispatcher.js index e8e9859..2fa91ca 100644 --- a/ui/dashboard/src/main/resources/static/src/js/client/dispatcher/dispatcher.js +++ b/ui/dashboard/src/main/resources/static/src/js/client/dispatcher/dispatcher.js @@ -11,7 +11,12 @@ var appDispatcher = { .success(callback) .error(function (err) { $(".modal").modal(); - $(".modal-body").text($.parseJSON(err.responseText).message); + if (err.statusCode().status == 404) { + $(".modal-body").text("The requested resource was not found"); + callback(err); + } else { + $(".modal-body").text($.parseJSON(err.responseText).message); + } }); } }; diff --git a/ui/dashboard/src/main/resources/static/src/js/root.js b/ui/dashboard/src/main/resources/static/src/js/root.js index 1cea5ef..e430720 100644 --- a/ui/dashboard/src/main/resources/static/src/js/root.js +++ b/ui/dashboard/src/main/resources/static/src/js/root.js @@ -1,6 +1,9 @@ var app = angular.module("myApp", ["ngRoute"]); var polling = true; var pageId; +var windowService; +var locationService; +var scopeService; app.config(function ($routeProvider) { $routeProvider.when("/", { templateUrl: "/src/partials/main.html", @@ -15,9 +18,17 @@ app.config(function ($routeProvider) { templateUrl: "/src/partials/warehouse.html", cache: false }); -}).directive('loader', ['$routeParams', function ($routeParams) { +}).directive('loader', ['$routeParams', '$window', '$location', function ($routeParams, $window, $location) { return { link: function (scope, element, attr) { + + scope.domain = attr.domain; + + pageId = $routeParams.id; + windowService = $window; + locationService = $location; + scopeService = scope; + $('#accordion').collapse({ toggle: false }); @@ -29,7 +40,7 @@ app.config(function ($routeProvider) { }).on('hidden.bs.collapse', function () { $(this).parent().find('.panel-title').removeClass("expanded").addClass("expandable"); }); - pageId = $routeParams.id; + var selector = ".item-title"; var handleRoute = function (after) { switch (attr.domain) { @@ -62,24 +73,75 @@ app.config(function ($routeProvider) { break; case "home": $(selector).text("Warehouse " + 1); - loadWarehouse(1, after); + + var loadHomeAccount = function () { + accountApi.get(1, function (acctRes) { + if (acctRes.statusCode != null) { + if (acctRes.statusCode().status == 404) { + setupAccounts(1, function (result) { + if (result.statusCode == null) { + accountApi.get(1, function (newRes) { + $(".account-form").jsonForm(accountForm.apply(".account-form", newRes)); + }); + } + }); + } + } else { + $(".account-form").jsonForm(accountForm.apply(".account-form", acctRes)); + } + }); + }; + + var loadHomeWarehouse = function () { + loadWarehouse(1, after, function (res) { + $(".modal").modal('hide'); + + if (res.statusCode().status == 404) { + // Create the first warehouse and reload page + setupWarehouses(1, function (result) { + if (result.statusCode == null) { + console.log(result); + addInventory(1, 5, 20, function () { + console.log("Inventory added"); + loadHomeWarehouse(); + }); + } + }); + } + }); + }; + + loadHomeAccount(); + loadHomeWarehouse(); + break; } }; + var doPoll = function () { if (polling) { setTimeout(function () { - handleRoute(doPoll); + if (scope.domain == scopeService.domain) { + handleRoute(doPoll); + } }, 2000); } }; - if (polling) { - polling = false; - handleRoute(function () { - setTimeout(function () { - polling = true; - doPoll(); - }, 2000); + if (attr.domain != "home") { + if (polling) { + polling = false; + if (scope.domain == scopeService.domain) { + handleRoute(function () { + setTimeout(function () { + polling = true; + doPoll(); + }, 2000); + }); + } + } + } else { + handleRoute(function() { + }); } return attr; @@ -89,49 +151,168 @@ app.config(function ($routeProvider) { var lastWarehouseSize = 0; var warehouseHref = null; var warehouseId = null; -var loadWarehouse = function (id, callback) { - warehouseId = warehouseId || id; - var getWarehouse = function (after) { - warehouseApi.get(id, function (res) { - var selector = ".warehouse-form"; - $(selector).text(''); - $(selector).jsonForm(warehouseForm.apply(selector, res)); - warehouseHref = res._links.inventory.href; - if (after != null) after(); - }); - }; - var loadWarehouseEvents = function () { - traverson.from(warehouseHref).getResource(function (error, document) { - if (error) { - console.error('Could not fetch events for the warehouse') - callback(); - } else { - var inventoryList = document._embedded.inventoryList; - if (lastWarehouseSize < inventoryList.length && lastWarehouseSize == 0) { - lastWarehouseSize = inventoryList.length; - createTable(".warehouse-inventory", inventoryList); - callback(); - } else if (lastWarehouseSize < inventoryList.length) { - appendRow(".warehouse-inventory", inventoryList.filter(function (x) { - return inventoryList.indexOf(x) > lastWarehouseSize - 1; - })); - lastWarehouseSize = inventoryList.length; - getWarehouse(function () { - callback(); - }); +var loadWarehouse = function (id, callback, err) { + warehouseId = warehouseId || id; + var getWarehouse = function (after) { + warehouseApi.get(id, function (res) { + console.log(res); + if (err != null ? res.statusCode != null : res != null) { + err(res); } else { - callback(); + var selector = ".warehouse-form"; + $(selector).text(''); + $(selector).jsonForm(warehouseForm.apply(selector, res)); + warehouseHref = res._links.inventory.href; + if (after != null) after(); } - } - }); - }; - if (warehouseHref == null) { - getWarehouse(function () { + }); + }; + var loadWarehouseEvents = function () { + traverson.from(warehouseHref).getResource(function (error, document) { + if (error) { + console.error('Could not fetch events for the warehouse') + callback(); + } else { + var inventoryList = document._embedded.inventoryList; + if (lastWarehouseSize < inventoryList.length && lastWarehouseSize == 0) { + lastWarehouseSize = inventoryList.length; + createTable(".warehouse-inventory", inventoryList); + callback(); + } else if (lastWarehouseSize < inventoryList.length) { + appendRow(".warehouse-inventory", inventoryList.filter(function (x) { + return inventoryList.indexOf(x) > lastWarehouseSize - 1; + }).sort(function (a, b) { + return a.createdAt - b.createdAt; + })); + lastWarehouseSize = inventoryList.length; + getWarehouse(function () { + callback(); + }); + } else { + callback(); + } + } + }); + }; + if (warehouseHref == null) { + getWarehouse(function () { + loadWarehouseEvents(); + }); + } else { loadWarehouseEvents(); + } + } + ; + +var setupAccounts = function (num) { + for (var i = 0; i < num; i++) { + accountApi.post(JSON.stringify(getFakeAccount()), function (res) { + console.log(res); }); - } else { - loadWarehouseEvents(); } }; +var getFakeAccount = function () { + return { + firstName: faker.name.firstName(), + lastName: faker.name.lastName(), + email: faker.internet.email() + }; +}; +var setupWarehouses = function (num, callback) { + var counter = 0; + for (var i = 0; i < num; i++) { + var item = getFakeWarehouse(); + warehouseApi.post(JSON.stringify(item), function (result) { + console.log(result); + counter += 1; + if (counter == num) { + callback(result); + } + }); + } +}; + +var addInventory = function (warehouseId, seed, num, callback) { + var counter = 0; + for (var i = 0; i < num; i++) { + var item = getFakeInventory(seed); + inventoryApi.post(warehouseId, JSON.stringify(item), function () { + counter += 1; + + if (counter == num) { + callback(); + } + }); + } +}; + +var getFakeAddress = function () { + return { + street1: faker.address.streetAddress(), + state: faker.address.state(), + city: faker.address.city(), + country: faker.address.country(), + zipCode: parseInt(faker.address.zipCode().substring(0, 5)) + }; +}; + +var getFakeWarehouse = function () { + return { + address: getFakeAddress(), + status: "WAREHOUSE_CREATED" + }; +}; + +var getFakeInventory = function (seed) { + return { + productId: "SKU-" + String("00" + Math.floor((Math.random() * seed) + 1)).slice(-5) + }; +}; + +var getFakeLineItem = function (seed) { + return { + name: faker.commerce.productName(), + productId: "SKU-" + String("00" + seed).slice(-5), + quantity: Math.floor((Math.random() * 5) + 1), + price: faker.commerce.price(), + tax: 0.06 + }; +}; + +var postOrderCommand = function (href) { + appDispatcher.handle(generate("POST", JSON.stringify(getFakeOrder(5)), href), function (res) { + console.log(res); + if (res.statusCode == null) { + traverson.from(res._links.self.href).getResource(function (error, document) { + if (error == null) { + if (scopeService != null) { + scopeService.$apply(function () { + locationService.path("/orders/" + document.orderId); + }); + } + } else { + $(".modal").modal(); + $(".modal-body").text($.parseJSON(document.responseText).message); + } + }); + } + }); +}; + +var getFakeOrder = function (numProducts) { + var shippingAddress = getFakeAddress(); + shippingAddress.addressType = "SHIPPING"; + + var lineItems = []; + var numLineItems = Math.floor((Math.random() * numProducts) + 1); + for (var i = 0; i < numLineItems; i++) { + lineItems.push(getFakeLineItem(i + 1)); + } + + return { + shippingAddress: shippingAddress, + lineItems: lineItems + } +}; \ No newline at end of file diff --git a/ui/dashboard/src/main/resources/static/src/js/util/faker.js b/ui/dashboard/src/main/resources/static/src/js/util/faker.js new file mode 100644 index 0000000..af1dc66 --- /dev/null +++ b/ui/dashboard/src/main/resources/static/src/js/util/faker.js @@ -0,0 +1,52714 @@ +!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var f;"undefined"!=typeof window?f=window:"undefined"!=typeof global?f=global:"undefined"!=typeof self&&(f=self),f.faker=e()}}(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o?|\"'])/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); + }; + + var result = []; + for (var i = 0; i < 4; i++) { + result[i] = randNum(); + } + + 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 + var red = Math.floor((faker.random.number(256) + baseRed255) / 2); + var green = Math.floor((faker.random.number(256) + baseGreen255) / 2); + var blue = Math.floor((faker.random.number(256) + baseBlue255) / 2); + var redStr = red.toString(16); + var greenStr = green.toString(16); + var blueStr = blue.toString(16); + return '#' + + (redStr.length === 1 ? '0' : '') + redStr + + (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+= 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":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'); + exports['en_BORK'] = require('./locales/en_BORK'); + exports['en_CA'] = require('./locales/en_CA'); + exports['en_GB'] = require('./locales/en_GB'); + exports['en_IE'] = require('./locales/en_IE'); + exports['en_IND'] = require('./locales/en_IND'); + exports['en_US'] = require('./locales/en_US'); + exports['en_au_ocker'] = require('./locales/en_au_ocker'); + exports['es'] = require('./locales/es'); + 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'); + exports['nl'] = require('./locales/nl'); + exports['pl'] = require('./locales/pl'); + exports['pt_BR'] = require('./locales/pt_BR'); + exports['ru'] = require('./locales/ru'); + exports['sk'] = require('./locales/sk'); + exports['sv'] = require('./locales/sv'); + exports['tr'] = require('./locales/tr'); + 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":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", + "##b", + "##c" + ]; + +},{}],15:[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}" + ]; + +},{}],16:[function(require,module,exports){ + module["exports"] = [ + "Nord", + "Ost", + "West", + "Süd", + "Neu", + "Alt", + "Bad" + ]; + +},{}],17:[function(require,module,exports){ + module["exports"] = [ + "stadt", + "dorf", + "land", + "scheid", + "burg" + ]; + +},{}],18:[function(require,module,exports){ + module["exports"] = [ + "Ägypten", + "Äquatorialguinea", + "Äthiopien", + "Österreich", + "Afghanistan", + "Albanien", + "Algerien", + "Amerikanisch-Samoa", + "Amerikanische Jungferninseln", + "Andorra", + "Angola", + "Anguilla", + "Antarktis", + "Antigua und Barbuda", + "Argentinien", + "Armenien", + "Aruba", + "Aserbaidschan", + "Australien", + "Bahamas", + "Bahrain", + "Bangladesch", + "Barbados", + "Belarus", + "Belgien", + "Belize", + "Benin", + "die Bermudas", + "Bhutan", + "Bolivien", + "Bosnien und Herzegowina", + "Botsuana", + "Bouvetinsel", + "Brasilien", + "Britische Jungferninseln", + "Britisches Territorium im Indischen Ozean", + "Brunei Darussalam", + "Bulgarien", + "Burkina Faso", + "Burundi", + "Chile", + "China", + "Cookinseln", + "Costa Rica", + "Dänemark", + "Demokratische Republik Kongo", + "Demokratische Volksrepublik Korea", + "Deutschland", + "Dominica", + "Dominikanische Republik", + "Dschibuti", + "Ecuador", + "El Salvador", + "Eritrea", + "Estland", + "Färöer", + "Falklandinseln", + "Fidschi", + "Finnland", + "Frankreich", + "Französisch-Guayana", + "Französisch-Polynesien", + "Französische Gebiete im südlichen Indischen Ozean", + "Gabun", + "Gambia", + "Georgien", + "Ghana", + "Gibraltar", + "Grönland", + "Grenada", + "Griechenland", + "Guadeloupe", + "Guam", + "Guatemala", + "Guinea", + "Guinea-Bissau", + "Guyana", + "Haiti", + "Heard und McDonaldinseln", + "Honduras", + "Hongkong", + "Indien", + "Indonesien", + "Irak", + "Iran", + "Irland", + "Island", + "Israel", + "Italien", + "Jamaika", + "Japan", + "Jemen", + "Jordanien", + "Jugoslawien", + "Kaimaninseln", + "Kambodscha", + "Kamerun", + "Kanada", + "Kap Verde", + "Kasachstan", + "Katar", + "Kenia", + "Kirgisistan", + "Kiribati", + "Kleinere amerikanische Überseeinseln", + "Kokosinseln", + "Kolumbien", + "Komoren", + "Kongo", + "Kroatien", + "Kuba", + "Kuwait", + "Laos", + "Lesotho", + "Lettland", + "Libanon", + "Liberia", + "Libyen", + "Liechtenstein", + "Litauen", + "Luxemburg", + "Macau", + "Madagaskar", + "Malawi", + "Malaysia", + "Malediven", + "Mali", + "Malta", + "ehemalige jugoslawische Republik Mazedonien", + "Marokko", + "Marshallinseln", + "Martinique", + "Mauretanien", + "Mauritius", + "Mayotte", + "Mexiko", + "Mikronesien", + "Monaco", + "Mongolei", + "Montserrat", + "Mosambik", + "Myanmar", + "Nördliche Marianen", + "Namibia", + "Nauru", + "Nepal", + "Neukaledonien", + "Neuseeland", + "Nicaragua", + "Niederländische Antillen", + "Niederlande", + "Niger", + "Nigeria", + "Niue", + "Norfolkinsel", + "Norwegen", + "Oman", + "Osttimor", + "Pakistan", + "Palau", + "Panama", + "Papua-Neuguinea", + "Paraguay", + "Peru", + "Philippinen", + "Pitcairninseln", + "Polen", + "Portugal", + "Puerto Rico", + "Réunion", + "Republik Korea", + "Republik Moldau", + "Ruanda", + "Rumänien", + "Russische Föderation", + "São Tomé und Príncipe", + "Südafrika", + "Südgeorgien und Südliche Sandwichinseln", + "Salomonen", + "Sambia", + "Samoa", + "San Marino", + "Saudi-Arabien", + "Schweden", + "Schweiz", + "Senegal", + "Seychellen", + "Sierra Leone", + "Simbabwe", + "Singapur", + "Slowakei", + "Slowenien", + "Somalien", + "Spanien", + "Sri Lanka", + "St. Helena", + "St. Kitts und Nevis", + "St. Lucia", + "St. Pierre und Miquelon", + "St. Vincent und die Grenadinen", + "Sudan", + "Surinam", + "Svalbard und Jan Mayen", + "Swasiland", + "Syrien", + "Türkei", + "Tadschikistan", + "Taiwan", + "Tansania", + "Thailand", + "Togo", + "Tokelau", + "Tonga", + "Trinidad und Tobago", + "Tschad", + "Tschechische Republik", + "Tunesien", + "Turkmenistan", + "Turks- und Caicosinseln", + "Tuvalu", + "Uganda", + "Ukraine", + "Ungarn", + "Uruguay", + "Usbekistan", + "Vanuatu", + "Vatikanstadt", + "Venezuela", + "Vereinigte Arabische Emirate", + "Vereinigte Staaten", + "Vereinigtes Königreich", + "Vietnam", + "Wallis und Futuna", + "Weihnachtsinsel", + "Westsahara", + "Zentralafrikanische Republik", + "Zypern" + ]; + +},{}],19:[function(require,module,exports){ + module["exports"] = [ + "Deutschland" + ]; + +},{}],20:[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"); + address.street_root = require("./street_root"); + address.building_number = require("./building_number"); + address.secondary_address = require("./secondary_address"); + address.postcode = require("./postcode"); + address.state = require("./state"); + address.state_abbr = require("./state_abbr"); + address.city = require("./city"); + address.street_name = require("./street_name"); + address.street_address = require("./street_address"); + address.default_country = require("./default_country"); + +},{"./building_number":14,"./city":15,"./city_prefix":16,"./city_suffix":17,"./country":18,"./default_country":19,"./postcode":21,"./secondary_address":22,"./state":23,"./state_abbr":24,"./street_address":25,"./street_name":26,"./street_root":27}],21:[function(require,module,exports){ + module["exports"] = [ + "#####", + "#####" + ]; + +},{}],22:[function(require,module,exports){ + module["exports"] = [ + "Apt. ###", + "Zimmer ###", + "# OG" + ]; + +},{}],23:[function(require,module,exports){ + module["exports"] = [ + "Baden-Württemberg", + "Bayern", + "Berlin", + "Brandenburg", + "Bremen", + "Hamburg", + "Hessen", + "Mecklenburg-Vorpommern", + "Niedersachsen", + "Nordrhein-Westfalen", + "Rheinland-Pfalz", + "Saarland", + "Sachsen", + "Sachsen-Anhalt", + "Schleswig-Holstein", + "Thüringen" + ]; + +},{}],24:[function(require,module,exports){ + module["exports"] = [ + "BW", + "BY", + "BE", + "BB", + "HB", + "HH", + "HE", + "MV", + "NI", + "NW", + "RP", + "SL", + "SN", + "ST", + "SH", + "TH" + ]; + +},{}],25:[function(require,module,exports){ + module["exports"] = [ + "#{street_name} #{building_number}" + ]; + +},{}],26:[function(require,module,exports){ + module["exports"] = [ + "#{street_root}" + ]; + +},{}],27:[function(require,module,exports){ + module["exports"] = [ + "Ackerweg", + "Adalbert-Stifter-Str.", + "Adalbertstr.", + "Adolf-Baeyer-Str.", + "Adolf-Kaschny-Str.", + "Adolf-Reichwein-Str.", + "Adolfsstr.", + "Ahornweg", + "Ahrstr.", + "Akazienweg", + "Albert-Einstein-Str.", + "Albert-Schweitzer-Str.", + "Albertus-Magnus-Str.", + "Albert-Zarthe-Weg", + "Albin-Edelmann-Str.", + "Albrecht-Haushofer-Str.", + "Aldegundisstr.", + "Alexanderstr.", + "Alfred-Delp-Str.", + "Alfred-Kubin-Str.", + "Alfred-Stock-Str.", + "Alkenrather Str.", + "Allensteiner Str.", + "Alsenstr.", + "Alt Steinbücheler Weg", + "Alte Garten", + "Alte Heide", + "Alte Landstr.", + "Alte Ziegelei", + "Altenberger Str.", + "Altenhof", + "Alter Grenzweg", + "Altstadtstr.", + "Am Alten Gaswerk", + "Am Alten Schafstall", + "Am Arenzberg", + "Am Benthal", + "Am Birkenberg", + "Am Blauen Berg", + "Am Borsberg", + "Am Brungen", + "Am Büchelter Hof", + "Am Buttermarkt", + "Am Ehrenfriedhof", + "Am Eselsdamm", + "Am Falkenberg", + "Am Frankenberg", + "Am Gesundheitspark", + "Am Gierlichshof", + "Am Graben", + "Am Hagelkreuz", + "Am Hang", + "Am Heidkamp", + "Am Hemmelrather Hof", + "Am Hofacker", + "Am Hohen Ufer", + "Am Höllers Eck", + "Am Hühnerberg", + "Am Jägerhof", + "Am Junkernkamp", + "Am Kemperstiegel", + "Am Kettnersbusch", + "Am Kiesberg", + "Am Klösterchen", + "Am Knechtsgraben", + "Am Köllerweg", + "Am Köttersbach", + "Am Kreispark", + "Am Kronefeld", + "Am Küchenhof", + "Am Kühnsbusch", + "Am Lindenfeld", + "Am Märchen", + "Am Mittelberg", + "Am Mönchshof", + "Am Mühlenbach", + "Am Neuenhof", + "Am Nonnenbruch", + "Am Plattenbusch", + "Am Quettinger Feld", + "Am Rosenhügel", + "Am Sandberg", + "Am Scherfenbrand", + "Am Schokker", + "Am Silbersee", + "Am Sonnenhang", + "Am Sportplatz", + "Am Stadtpark", + "Am Steinberg", + "Am Telegraf", + "Am Thelenhof", + "Am Vogelkreuz", + "Am Vogelsang", + "Am Vogelsfeldchen", + "Am Wambacher Hof", + "Am Wasserturm", + "Am Weidenbusch", + "Am Weiher", + "Am Weingarten", + "Am Werth", + "Amselweg", + "An den Irlen", + "An den Rheinauen", + "An der Bergerweide", + "An der Dingbank", + "An der Evangelischen Kirche", + "An der Evgl. Kirche", + "An der Feldgasse", + "An der Fettehenne", + "An der Kante", + "An der Laach", + "An der Lehmkuhle", + "An der Lichtenburg", + "An der Luisenburg", + "An der Robertsburg", + "An der Schmitten", + "An der Schusterinsel", + "An der Steinrütsch", + "An St. Andreas", + "An St. Remigius", + "Andreasstr.", + "Ankerweg", + "Annette-Kolb-Str.", + "Apenrader Str.", + "Arnold-Ohletz-Str.", + "Atzlenbacher Str.", + "Auerweg", + "Auestr.", + "Auf dem Acker", + "Auf dem Blahnenhof", + "Auf dem Bohnbüchel", + "Auf dem Bruch", + "Auf dem End", + "Auf dem Forst", + "Auf dem Herberg", + "Auf dem Lehn", + "Auf dem Stein", + "Auf dem Weierberg", + "Auf dem Weiherhahn", + "Auf den Reien", + "Auf der Donnen", + "Auf der Grieße", + "Auf der Ohmer", + "Auf der Weide", + "Auf'm Berg", + "Auf'm Kamp", + "Augustastr.", + "August-Kekulé-Str.", + "A.-W.-v.-Hofmann-Str.", + "Bahnallee", + "Bahnhofstr.", + "Baltrumstr.", + "Bamberger Str.", + "Baumberger Str.", + "Bebelstr.", + "Beckers Kämpchen", + "Beerenstr.", + "Beethovenstr.", + "Behringstr.", + "Bendenweg", + "Bensberger Str.", + "Benzstr.", + "Bergische Landstr.", + "Bergstr.", + "Berliner Platz", + "Berliner Str.", + "Bernhard-Letterhaus-Str.", + "Bernhard-Lichtenberg-Str.", + "Bernhard-Ridder-Str.", + "Bernsteinstr.", + "Bertha-Middelhauve-Str.", + "Bertha-von-Suttner-Str.", + "Bertolt-Brecht-Str.", + "Berzeliusstr.", + "Bielertstr.", + "Biesenbach", + "Billrothstr.", + "Birkenbergstr.", + "Birkengartenstr.", + "Birkenweg", + "Bismarckstr.", + "Bitterfelder Str.", + "Blankenburg", + "Blaukehlchenweg", + "Blütenstr.", + "Boberstr.", + "Böcklerstr.", + "Bodelschwinghstr.", + "Bodestr.", + "Bogenstr.", + "Bohnenkampsweg", + "Bohofsweg", + "Bonifatiusstr.", + "Bonner Str.", + "Borkumstr.", + "Bornheimer Str.", + "Borsigstr.", + "Borussiastr.", + "Bracknellstr.", + "Brahmsweg", + "Brandenburger Str.", + "Breidenbachstr.", + "Breslauer Str.", + "Bruchhauser Str.", + "Brückenstr.", + "Brucknerstr.", + "Brüder-Bonhoeffer-Str.", + "Buchenweg", + "Bürgerbuschweg", + "Burgloch", + "Burgplatz", + "Burgstr.", + "Burgweg", + "Bürriger Weg", + "Burscheider Str.", + "Buschkämpchen", + "Butterheider Str.", + "Carl-Duisberg-Platz", + "Carl-Duisberg-Str.", + "Carl-Leverkus-Str.", + "Carl-Maria-von-Weber-Platz", + "Carl-Maria-von-Weber-Str.", + "Carlo-Mierendorff-Str.", + "Carl-Rumpff-Str.", + "Carl-von-Ossietzky-Str.", + "Charlottenburger Str.", + "Christian-Heß-Str.", + "Claasbruch", + "Clemens-Winkler-Str.", + "Concordiastr.", + "Cranachstr.", + "Dahlemer Str.", + "Daimlerstr.", + "Damaschkestr.", + "Danziger Str.", + "Debengasse", + "Dechant-Fein-Str.", + "Dechant-Krey-Str.", + "Deichtorstr.", + "Dhünnberg", + "Dhünnstr.", + "Dianastr.", + "Diedenhofener Str.", + "Diepental", + "Diepenthaler Str.", + "Dieselstr.", + "Dillinger Str.", + "Distelkamp", + "Dohrgasse", + "Domblick", + "Dönhoffstr.", + "Dornierstr.", + "Drachenfelsstr.", + "Dr.-August-Blank-Str.", + "Dresdener Str.", + "Driescher Hecke", + "Drosselweg", + "Dudweilerstr.", + "Dünenweg", + "Dünfelder Str.", + "Dünnwalder Grenzweg", + "Düppeler Str.", + "Dürerstr.", + "Dürscheider Weg", + "Düsseldorfer Str.", + "Edelrather Weg", + "Edmund-Husserl-Str.", + "Eduard-Spranger-Str.", + "Ehrlichstr.", + "Eichenkamp", + "Eichenweg", + "Eidechsenweg", + "Eifelstr.", + "Eifgenstr.", + "Eintrachtstr.", + "Elbestr.", + "Elisabeth-Langgässer-Str.", + "Elisabethstr.", + "Elisabeth-von-Thadden-Str.", + "Elisenstr.", + "Elsa-Brändström-Str.", + "Elsbachstr.", + "Else-Lasker-Schüler-Str.", + "Elsterstr.", + "Emil-Fischer-Str.", + "Emil-Nolde-Str.", + "Engelbertstr.", + "Engstenberger Weg", + "Entenpfuhl", + "Erbelegasse", + "Erftstr.", + "Erfurter Str.", + "Erich-Heckel-Str.", + "Erich-Klausener-Str.", + "Erich-Ollenhauer-Str.", + "Erlenweg", + "Ernst-Bloch-Str.", + "Ernst-Ludwig-Kirchner-Str.", + "Erzbergerstr.", + "Eschenallee", + "Eschenweg", + "Esmarchstr.", + "Espenweg", + "Euckenstr.", + "Eulengasse", + "Eulenkamp", + "Ewald-Flamme-Str.", + "Ewald-Röll-Str.", + "Fährstr.", + "Farnweg", + "Fasanenweg", + "Faßbacher Hof", + "Felderstr.", + "Feldkampstr.", + "Feldsiefer Weg", + "Feldsiefer Wiesen", + "Feldstr.", + "Feldtorstr.", + "Felix-von-Roll-Str.", + "Ferdinand-Lassalle-Str.", + "Fester Weg", + "Feuerbachstr.", + "Feuerdornweg", + "Fichtenweg", + "Fichtestr.", + "Finkelsteinstr.", + "Finkenweg", + "Fixheider Str.", + "Flabbenhäuschen", + "Flensburger Str.", + "Fliederweg", + "Florastr.", + "Florianweg", + "Flotowstr.", + "Flurstr.", + "Föhrenweg", + "Fontanestr.", + "Forellental", + "Fortunastr.", + "Franz-Esser-Str.", + "Franz-Hitze-Str.", + "Franz-Kail-Str.", + "Franz-Marc-Str.", + "Freiburger Str.", + "Freiheitstr.", + "Freiherr-vom-Stein-Str.", + "Freudenthal", + "Freudenthaler Weg", + "Fridtjof-Nansen-Str.", + "Friedenberger Str.", + "Friedensstr.", + "Friedhofstr.", + "Friedlandstr.", + "Friedlieb-Ferdinand-Runge-Str.", + "Friedrich-Bayer-Str.", + "Friedrich-Bergius-Platz", + "Friedrich-Ebert-Platz", + "Friedrich-Ebert-Str.", + "Friedrich-Engels-Str.", + "Friedrich-List-Str.", + "Friedrich-Naumann-Str.", + "Friedrich-Sertürner-Str.", + "Friedrichstr.", + "Friedrich-Weskott-Str.", + "Friesenweg", + "Frischenberg", + "Fritz-Erler-Str.", + "Fritz-Henseler-Str.", + "Fröbelstr.", + "Fürstenbergplatz", + "Fürstenbergstr.", + "Gabriele-Münter-Str.", + "Gartenstr.", + "Gebhardstr.", + "Geibelstr.", + "Gellertstr.", + "Georg-von-Vollmar-Str.", + "Gerhard-Domagk-Str.", + "Gerhart-Hauptmann-Str.", + "Gerichtsstr.", + "Geschwister-Scholl-Str.", + "Gezelinallee", + "Gierener Weg", + "Ginsterweg", + "Gisbert-Cremer-Str.", + "Glücksburger Str.", + "Gluckstr.", + "Gneisenaustr.", + "Goetheplatz", + "Goethestr.", + "Golo-Mann-Str.", + "Görlitzer Str.", + "Görresstr.", + "Graebestr.", + "Graf-Galen-Platz", + "Gregor-Mendel-Str.", + "Greifswalder Str.", + "Grillenweg", + "Gronenborner Weg", + "Große Kirchstr.", + "Grunder Wiesen", + "Grundermühle", + "Grundermühlenhof", + "Grundermühlenweg", + "Grüner Weg", + "Grunewaldstr.", + "Grünstr.", + "Günther-Weisenborn-Str.", + "Gustav-Freytag-Str.", + "Gustav-Heinemann-Str.", + "Gustav-Radbruch-Str.", + "Gut Reuschenberg", + "Gutenbergstr.", + "Haberstr.", + "Habichtgasse", + "Hafenstr.", + "Hagenauer Str.", + "Hahnenblecher", + "Halenseestr.", + "Halfenleimbach", + "Hallesche Str.", + "Halligstr.", + "Hamberger Str.", + "Hammerweg", + "Händelstr.", + "Hannah-Höch-Str.", + "Hans-Arp-Str.", + "Hans-Gerhard-Str.", + "Hans-Sachs-Str.", + "Hans-Schlehahn-Str.", + "Hans-von-Dohnanyi-Str.", + "Hardenbergstr.", + "Haselweg", + "Hauptstr.", + "Haus-Vorster-Str.", + "Hauweg", + "Havelstr.", + "Havensteinstr.", + "Haydnstr.", + "Hebbelstr.", + "Heckenweg", + "Heerweg", + "Hegelstr.", + "Heidberg", + "Heidehöhe", + "Heidestr.", + "Heimstättenweg", + "Heinrich-Böll-Str.", + "Heinrich-Brüning-Str.", + "Heinrich-Claes-Str.", + "Heinrich-Heine-Str.", + "Heinrich-Hörlein-Str.", + "Heinrich-Lübke-Str.", + "Heinrich-Lützenkirchen-Weg", + "Heinrichstr.", + "Heinrich-Strerath-Str.", + "Heinrich-von-Kleist-Str.", + "Heinrich-von-Stephan-Str.", + "Heisterbachstr.", + "Helenenstr.", + "Helmestr.", + "Hemmelrather Weg", + "Henry-T.-v.-Böttinger-Str.", + "Herderstr.", + "Heribertstr.", + "Hermann-Ehlers-Str.", + "Hermann-Hesse-Str.", + "Hermann-König-Str.", + "Hermann-Löns-Str.", + "Hermann-Milde-Str.", + "Hermann-Nörrenberg-Str.", + "Hermann-von-Helmholtz-Str.", + "Hermann-Waibel-Str.", + "Herzogstr.", + "Heymannstr.", + "Hindenburgstr.", + "Hirzenberg", + "Hitdorfer Kirchweg", + "Hitdorfer Str.", + "Höfer Mühle", + "Höfer Weg", + "Hohe Str.", + "Höhenstr.", + "Höltgestal", + "Holunderweg", + "Holzer Weg", + "Holzer Wiesen", + "Hornpottweg", + "Hubertusweg", + "Hufelandstr.", + "Hufer Weg", + "Humboldtstr.", + "Hummelsheim", + "Hummelweg", + "Humperdinckstr.", + "Hüscheider Gärten", + "Hüscheider Str.", + "Hütte", + "Ilmstr.", + "Im Bergischen Heim", + "Im Bruch", + "Im Buchenhain", + "Im Bühl", + "Im Burgfeld", + "Im Dorf", + "Im Eisholz", + "Im Friedenstal", + "Im Frohental", + "Im Grunde", + "Im Hederichsfeld", + "Im Jücherfeld", + "Im Kalkfeld", + "Im Kirberg", + "Im Kirchfeld", + "Im Kreuzbruch", + "Im Mühlenfeld", + "Im Nesselrader Kamp", + "Im Oberdorf", + "Im Oberfeld", + "Im Rosengarten", + "Im Rottland", + "Im Scheffengarten", + "Im Staderfeld", + "Im Steinfeld", + "Im Weidenblech", + "Im Winkel", + "Im Ziegelfeld", + "Imbach", + "Imbacher Weg", + "Immenweg", + "In den Blechenhöfen", + "In den Dehlen", + "In der Birkenau", + "In der Dasladen", + "In der Felderhütten", + "In der Hartmannswiese", + "In der Höhle", + "In der Schaafsdellen", + "In der Wasserkuhl", + "In der Wüste", + "In Holzhausen", + "Insterstr.", + "Jacob-Fröhlen-Str.", + "Jägerstr.", + "Jahnstr.", + "Jakob-Eulenberg-Weg", + "Jakobistr.", + "Jakob-Kaiser-Str.", + "Jenaer Str.", + "Johannes-Baptist-Str.", + "Johannes-Dott-Str.", + "Johannes-Popitz-Str.", + "Johannes-Wislicenus-Str.", + "Johannisburger Str.", + "Johann-Janssen-Str.", + "Johann-Wirtz-Weg", + "Josefstr.", + "Jüch", + "Julius-Doms-Str.", + "Julius-Leber-Str.", + "Kaiserplatz", + "Kaiserstr.", + "Kaiser-Wilhelm-Allee", + "Kalkstr.", + "Kämpchenstr.", + "Kämpenwiese", + "Kämper Weg", + "Kamptalweg", + "Kanalstr.", + "Kandinskystr.", + "Kantstr.", + "Kapellenstr.", + "Karl-Arnold-Str.", + "Karl-Bosch-Str.", + "Karl-Bückart-Str.", + "Karl-Carstens-Ring", + "Karl-Friedrich-Goerdeler-Str.", + "Karl-Jaspers-Str.", + "Karl-König-Str.", + "Karl-Krekeler-Str.", + "Karl-Marx-Str.", + "Karlstr.", + "Karl-Ulitzka-Str.", + "Karl-Wichmann-Str.", + "Karl-Wingchen-Str.", + "Käsenbrod", + "Käthe-Kollwitz-Str.", + "Katzbachstr.", + "Kerschensteinerstr.", + "Kiefernweg", + "Kieler Str.", + "Kieselstr.", + "Kiesweg", + "Kinderhausen", + "Kleiberweg", + "Kleine Kirchstr.", + "Kleingansweg", + "Kleinheider Weg", + "Klief", + "Kneippstr.", + "Knochenbergsweg", + "Kochergarten", + "Kocherstr.", + "Kockelsberg", + "Kolberger Str.", + "Kolmarer Str.", + "Kölner Gasse", + "Kölner Str.", + "Kolpingstr.", + "Königsberger Platz", + "Konrad-Adenauer-Platz", + "Köpenicker Str.", + "Kopernikusstr.", + "Körnerstr.", + "Köschenberg", + "Köttershof", + "Kreuzbroicher Str.", + "Kreuzkamp", + "Krummer Weg", + "Kruppstr.", + "Kuhlmannweg", + "Kump", + "Kumper Weg", + "Kunstfeldstr.", + "Küppersteger Str.", + "Kursiefen", + "Kursiefer Weg", + "Kurtekottenweg", + "Kurt-Schumacher-Ring", + "Kyllstr.", + "Langenfelder Str.", + "Längsleimbach", + "Lärchenweg", + "Legienstr.", + "Lehner Mühle", + "Leichlinger Str.", + "Leimbacher Hof", + "Leinestr.", + "Leineweberstr.", + "Leipziger Str.", + "Lerchengasse", + "Lessingstr.", + "Libellenweg", + "Lichstr.", + "Liebigstr.", + "Lindenstr.", + "Lingenfeld", + "Linienstr.", + "Lippe", + "Löchergraben", + "Löfflerstr.", + "Loheweg", + "Lohrbergstr.", + "Lohrstr.", + "Löhstr.", + "Lortzingstr.", + "Lötzener Str.", + "Löwenburgstr.", + "Lucasstr.", + "Ludwig-Erhard-Platz", + "Ludwig-Girtler-Str.", + "Ludwig-Knorr-Str.", + "Luisenstr.", + "Lupinenweg", + "Lurchenweg", + "Lützenkirchener Str.", + "Lycker Str.", + "Maashofstr.", + "Manforter Str.", + "Marc-Chagall-Str.", + "Maria-Dresen-Str.", + "Maria-Terwiel-Str.", + "Marie-Curie-Str.", + "Marienburger Str.", + "Mariendorfer Str.", + "Marienwerderstr.", + "Marie-Schlei-Str.", + "Marktplatz", + "Markusweg", + "Martin-Buber-Str.", + "Martin-Heidegger-Str.", + "Martin-Luther-Str.", + "Masurenstr.", + "Mathildenweg", + "Maurinusstr.", + "Mauspfad", + "Max-Beckmann-Str.", + "Max-Delbrück-Str.", + "Max-Ernst-Str.", + "Max-Holthausen-Platz", + "Max-Horkheimer-Str.", + "Max-Liebermann-Str.", + "Max-Pechstein-Str.", + "Max-Planck-Str.", + "Max-Scheler-Str.", + "Max-Schönenberg-Str.", + "Maybachstr.", + "Meckhofer Feld", + "Meisenweg", + "Memelstr.", + "Menchendahler Str.", + "Mendelssohnstr.", + "Merziger Str.", + "Mettlacher Str.", + "Metzer Str.", + "Michaelsweg", + "Miselohestr.", + "Mittelstr.", + "Mohlenstr.", + "Moltkestr.", + "Monheimer Str.", + "Montanusstr.", + "Montessoriweg", + "Moosweg", + "Morsbroicher Str.", + "Moselstr.", + "Moskauer Str.", + "Mozartstr.", + "Mühlenweg", + "Muhrgasse", + "Muldestr.", + "Mülhausener Str.", + "Mülheimer Str.", + "Münsters Gäßchen", + "Münzstr.", + "Müritzstr.", + "Myliusstr.", + "Nachtigallenweg", + "Nauener Str.", + "Neißestr.", + "Nelly-Sachs-Str.", + "Netzestr.", + "Neuendriesch", + "Neuenhausgasse", + "Neuenkamp", + "Neujudenhof", + "Neukronenberger Str.", + "Neustadtstr.", + "Nicolai-Hartmann-Str.", + "Niederblecher", + "Niederfeldstr.", + "Nietzschestr.", + "Nikolaus-Groß-Str.", + "Nobelstr.", + "Norderneystr.", + "Nordstr.", + "Ober dem Hof", + "Obere Lindenstr.", + "Obere Str.", + "Oberölbach", + "Odenthaler Str.", + "Oderstr.", + "Okerstr.", + "Olof-Palme-Str.", + "Ophovener Str.", + "Opladener Platz", + "Opladener Str.", + "Ortelsburger Str.", + "Oskar-Moll-Str.", + "Oskar-Schlemmer-Str.", + "Oststr.", + "Oswald-Spengler-Str.", + "Otto-Dix-Str.", + "Otto-Grimm-Str.", + "Otto-Hahn-Str.", + "Otto-Müller-Str.", + "Otto-Stange-Str.", + "Ottostr.", + "Otto-Varnhagen-Str.", + "Otto-Wels-Str.", + "Ottweilerstr.", + "Oulustr.", + "Overfeldweg", + "Pappelweg", + "Paracelsusstr.", + "Parkstr.", + "Pastor-Louis-Str.", + "Pastor-Scheibler-Str.", + "Pastorskamp", + "Paul-Klee-Str.", + "Paul-Löbe-Str.", + "Paulstr.", + "Peenestr.", + "Pescher Busch", + "Peschstr.", + "Pestalozzistr.", + "Peter-Grieß-Str.", + "Peter-Joseph-Lenné-Str.", + "Peter-Neuenheuser-Str.", + "Petersbergstr.", + "Peterstr.", + "Pfarrer-Jekel-Str.", + "Pfarrer-Klein-Str.", + "Pfarrer-Röhr-Str.", + "Pfeilshofstr.", + "Philipp-Ott-Str.", + "Piet-Mondrian-Str.", + "Platanenweg", + "Pommernstr.", + "Porschestr.", + "Poststr.", + "Potsdamer Str.", + "Pregelstr.", + "Prießnitzstr.", + "Pützdelle", + "Quarzstr.", + "Quettinger Str.", + "Rat-Deycks-Str.", + "Rathenaustr.", + "Ratherkämp", + "Ratiborer Str.", + "Raushofstr.", + "Regensburger Str.", + "Reinickendorfer Str.", + "Renkgasse", + "Rennbaumplatz", + "Rennbaumstr.", + "Reuschenberger Str.", + "Reusrather Str.", + "Reuterstr.", + "Rheinallee", + "Rheindorfer Str.", + "Rheinstr.", + "Rhein-Wupper-Platz", + "Richard-Wagner-Str.", + "Rilkestr.", + "Ringstr.", + "Robert-Blum-Str.", + "Robert-Koch-Str.", + "Robert-Medenwald-Str.", + "Rolandstr.", + "Romberg", + "Röntgenstr.", + "Roonstr.", + "Ropenstall", + "Ropenstaller Weg", + "Rosenthal", + "Rostocker Str.", + "Rotdornweg", + "Röttgerweg", + "Rückertstr.", + "Rudolf-Breitscheid-Str.", + "Rudolf-Mann-Platz", + "Rudolf-Stracke-Str.", + "Ruhlachplatz", + "Ruhlachstr.", + "Rüttersweg", + "Saalestr.", + "Saarbrücker Str.", + "Saarlauterner Str.", + "Saarstr.", + "Salamanderweg", + "Samlandstr.", + "Sanddornstr.", + "Sandstr.", + "Sauerbruchstr.", + "Schäfershütte", + "Scharnhorststr.", + "Scheffershof", + "Scheidemannstr.", + "Schellingstr.", + "Schenkendorfstr.", + "Schießbergstr.", + "Schillerstr.", + "Schlangenhecke", + "Schlebuscher Heide", + "Schlebuscher Str.", + "Schlebuschrath", + "Schlehdornstr.", + "Schleiermacherstr.", + "Schloßstr.", + "Schmalenbruch", + "Schnepfenflucht", + "Schöffenweg", + "Schöllerstr.", + "Schöne Aussicht", + "Schöneberger Str.", + "Schopenhauerstr.", + "Schubertplatz", + "Schubertstr.", + "Schulberg", + "Schulstr.", + "Schumannstr.", + "Schwalbenweg", + "Schwarzastr.", + "Sebastianusweg", + "Semmelweisstr.", + "Siebelplatz", + "Siemensstr.", + "Solinger Str.", + "Sonderburger Str.", + "Spandauer Str.", + "Speestr.", + "Sperberweg", + "Sperlingsweg", + "Spitzwegstr.", + "Sporrenberger Mühle", + "Spreestr.", + "St. Ingberter Str.", + "Starenweg", + "Stauffenbergstr.", + "Stefan-Zweig-Str.", + "Stegerwaldstr.", + "Steglitzer Str.", + "Steinbücheler Feld", + "Steinbücheler Str.", + "Steinstr.", + "Steinweg", + "Stephan-Lochner-Str.", + "Stephanusstr.", + "Stettiner Str.", + "Stixchesstr.", + "Stöckenstr.", + "Stralsunder Str.", + "Straßburger Str.", + "Stresemannplatz", + "Strombergstr.", + "Stromstr.", + "Stüttekofener Str.", + "Sudestr.", + "Sürderstr.", + "Syltstr.", + "Talstr.", + "Tannenbergstr.", + "Tannenweg", + "Taubenweg", + "Teitscheider Weg", + "Telegrafenstr.", + "Teltower Str.", + "Tempelhofer Str.", + "Theodor-Adorno-Str.", + "Theodor-Fliedner-Str.", + "Theodor-Gierath-Str.", + "Theodor-Haubach-Str.", + "Theodor-Heuss-Ring", + "Theodor-Storm-Str.", + "Theodorstr.", + "Thomas-Dehler-Str.", + "Thomas-Morus-Str.", + "Thomas-von-Aquin-Str.", + "Tönges Feld", + "Torstr.", + "Treptower Str.", + "Treuburger Str.", + "Uhlandstr.", + "Ulmenweg", + "Ulmer Str.", + "Ulrichstr.", + "Ulrich-von-Hassell-Str.", + "Umlag", + "Unstrutstr.", + "Unter dem Schildchen", + "Unterölbach", + "Unterstr.", + "Uppersberg", + "Van\\'t-Hoff-Str.", + "Veit-Stoß-Str.", + "Vereinsstr.", + "Viktor-Meyer-Str.", + "Vincent-van-Gogh-Str.", + "Virchowstr.", + "Voigtslach", + "Volhardstr.", + "Völklinger Str.", + "Von-Brentano-Str.", + "Von-Diergardt-Str.", + "Von-Eichendorff-Str.", + "Von-Ketteler-Str.", + "Von-Knoeringen-Str.", + "Von-Pettenkofer-Str.", + "Von-Siebold-Str.", + "Wacholderweg", + "Waldstr.", + "Walter-Flex-Str.", + "Walter-Hempel-Str.", + "Walter-Hochapfel-Str.", + "Walter-Nernst-Str.", + "Wannseestr.", + "Warnowstr.", + "Warthestr.", + "Weddigenstr.", + "Weichselstr.", + "Weidenstr.", + "Weidfeldstr.", + "Weiherfeld", + "Weiherstr.", + "Weinhäuser Str.", + "Weißdornweg", + "Weißenseestr.", + "Weizkamp", + "Werftstr.", + "Werkstättenstr.", + "Werner-Heisenberg-Str.", + "Werrastr.", + "Weyerweg", + "Widdauener Str.", + "Wiebertshof", + "Wiehbachtal", + "Wiembachallee", + "Wiesdorfer Platz", + "Wiesenstr.", + "Wilhelm-Busch-Str.", + "Wilhelm-Hastrich-Str.", + "Wilhelm-Leuschner-Str.", + "Wilhelm-Liebknecht-Str.", + "Wilhelmsgasse", + "Wilhelmstr.", + "Willi-Baumeister-Str.", + "Willy-Brandt-Ring", + "Winand-Rossi-Str.", + "Windthorststr.", + "Winkelweg", + "Winterberg", + "Wittenbergstr.", + "Wolf-Vostell-Str.", + "Wolkenburgstr.", + "Wupperstr.", + "Wuppertalstr.", + "Wüstenhof", + "Yitzhak-Rabin-Str.", + "Zauberkuhle", + "Zedernweg", + "Zehlendorfer Str.", + "Zehntenweg", + "Zeisigweg", + "Zeppelinstr.", + "Zschopaustr.", + "Zum Claashäuschen", + "Zündhütchenweg", + "Zur Alten Brauerei", + "Zur alten Fabrik" + ]; + +},{}],28:[function(require,module,exports){ + module["exports"] = [ + "+49-1##-#######", + "+49-1###-########" + ]; + +},{}],29:[function(require,module,exports){ + var cell_phone = {}; + module['exports'] = cell_phone; + cell_phone.formats = require("./formats"); + +},{"./formats":28}],30:[function(require,module,exports){ + var company = {}; + module['exports'] = company; + company.suffix = require("./suffix"); + company.legal_form = require("./legal_form"); + company.name = require("./name"); + +},{"./legal_form":31,"./name":32,"./suffix":33}],31:[function(require,module,exports){ + module["exports"] = [ + "GmbH", + "AG", + "Gruppe", + "KG", + "GmbH & Co. KG", + "UG", + "OHG" + ]; + +},{}],32:[function(require,module,exports){ + module["exports"] = [ + "#{Name.last_name} #{suffix}", + "#{Name.last_name}-#{Name.last_name}", + "#{Name.last_name}, #{Name.last_name} und #{Name.last_name}" + ]; + +},{}],33:[function(require,module,exports){ + module.exports=require(31) +},{"/Users/a/dev/faker.js/lib/locales/de/company/legal_form.js":31}],34:[function(require,module,exports){ + var de = {}; + module['exports'] = de; + de.title = "German"; + de.address = require("./address"); + de.company = require("./company"); + de.internet = require("./internet"); + de.lorem = require("./lorem"); + de.name = require("./name"); + de.phone_number = require("./phone_number"); + de.cell_phone = require("./cell_phone"); +},{"./address":20,"./cell_phone":29,"./company":30,"./internet":37,"./lorem":38,"./name":41,"./phone_number":47}],35:[function(require,module,exports){ + module["exports"] = [ + "com", + "info", + "name", + "net", + "org", + "de", + "ch" + ]; + +},{}],36:[function(require,module,exports){ + module["exports"] = [ + "gmail.com", + "yahoo.com", + "hotmail.com" + ]; + +},{}],37:[function(require,module,exports){ + var internet = {}; + module['exports'] = internet; + internet.free_email = require("./free_email"); + internet.domain_suffix = require("./domain_suffix"); + +},{"./domain_suffix":35,"./free_email":36}],38:[function(require,module,exports){ + var lorem = {}; + module['exports'] = lorem; + lorem.words = require("./words"); + +},{"./words":39}],39:[function(require,module,exports){ + module["exports"] = [ + "alias", + "consequatur", + "aut", + "perferendis", + "sit", + "voluptatem", + "accusantium", + "doloremque", + "aperiam", + "eaque", + "ipsa", + "quae", + "ab", + "illo", + "inventore", + "veritatis", + "et", + "quasi", + "architecto", + "beatae", + "vitae", + "dicta", + "sunt", + "explicabo", + "aspernatur", + "aut", + "odit", + "aut", + "fugit", + "sed", + "quia", + "consequuntur", + "magni", + "dolores", + "eos", + "qui", + "ratione", + "voluptatem", + "sequi", + "nesciunt", + "neque", + "dolorem", + "ipsum", + "quia", + "dolor", + "sit", + "amet", + "consectetur", + "adipisci", + "velit", + "sed", + "quia", + "non", + "numquam", + "eius", + "modi", + "tempora", + "incidunt", + "ut", + "labore", + "et", + "dolore", + "magnam", + "aliquam", + "quaerat", + "voluptatem", + "ut", + "enim", + "ad", + "minima", + "veniam", + "quis", + "nostrum", + "exercitationem", + "ullam", + "corporis", + "nemo", + "enim", + "ipsam", + "voluptatem", + "quia", + "voluptas", + "sit", + "suscipit", + "laboriosam", + "nisi", + "ut", + "aliquid", + "ex", + "ea", + "commodi", + "consequatur", + "quis", + "autem", + "vel", + "eum", + "iure", + "reprehenderit", + "qui", + "in", + "ea", + "voluptate", + "velit", + "esse", + "quam", + "nihil", + "molestiae", + "et", + "iusto", + "odio", + "dignissimos", + "ducimus", + "qui", + "blanditiis", + "praesentium", + "laudantium", + "totam", + "rem", + "voluptatum", + "deleniti", + "atque", + "corrupti", + "quos", + "dolores", + "et", + "quas", + "molestias", + "excepturi", + "sint", + "occaecati", + "cupiditate", + "non", + "provident", + "sed", + "ut", + "perspiciatis", + "unde", + "omnis", + "iste", + "natus", + "error", + "similique", + "sunt", + "in", + "culpa", + "qui", + "officia", + "deserunt", + "mollitia", + "animi", + "id", + "est", + "laborum", + "et", + "dolorum", + "fuga", + "et", + "harum", + "quidem", + "rerum", + "facilis", + "est", + "et", + "expedita", + "distinctio", + "nam", + "libero", + "tempore", + "cum", + "soluta", + "nobis", + "est", + "eligendi", + "optio", + "cumque", + "nihil", + "impedit", + "quo", + "porro", + "quisquam", + "est", + "qui", + "minus", + "id", + "quod", + "maxime", + "placeat", + "facere", + "possimus", + "omnis", + "voluptas", + "assumenda", + "est", + "omnis", + "dolor", + "repellendus", + "temporibus", + "autem", + "quibusdam", + "et", + "aut", + "consequatur", + "vel", + "illum", + "qui", + "dolorem", + "eum", + "fugiat", + "quo", + "voluptas", + "nulla", + "pariatur", + "at", + "vero", + "eos", + "et", + "accusamus", + "officiis", + "debitis", + "aut", + "rerum", + "necessitatibus", + "saepe", + "eveniet", + "ut", + "et", + "voluptates", + "repudiandae", + "sint", + "et", + "molestiae", + "non", + "recusandae", + "itaque", + "earum", + "rerum", + "hic", + "tenetur", + "a", + "sapiente", + "delectus", + "ut", + "aut", + "reiciendis", + "voluptatibus", + "maiores", + "doloribus", + "asperiores", + "repellat" + ]; + +},{}],40:[function(require,module,exports){ + module["exports"] = [ + "Aaron", + "Abdul", + "Abdullah", + "Adam", + "Adrian", + "Adriano", + "Ahmad", + "Ahmed", + "Ahmet", + "Alan", + "Albert", + "Alessandro", + "Alessio", + "Alex", + "Alexander", + "Alfred", + "Ali", + "Amar", + "Amir", + "Amon", + "Andre", + "Andreas", + "Andrew", + "Angelo", + "Ansgar", + "Anthony", + "Anton", + "Antonio", + "Arda", + "Arian", + "Armin", + "Arne", + "Arno", + "Arthur", + "Artur", + "Arved", + "Arvid", + "Ayman", + "Baran", + "Baris", + "Bastian", + "Batuhan", + "Bela", + "Ben", + "Benedikt", + "Benjamin", + "Bennet", + "Bennett", + "Benno", + "Bent", + "Berat", + "Berkay", + "Bernd", + "Bilal", + "Bjarne", + "Björn", + "Bo", + "Boris", + "Brandon", + "Brian", + "Bruno", + "Bryan", + "Burak", + "Calvin", + "Can", + "Carl", + "Carlo", + "Carlos", + "Caspar", + "Cedric", + "Cedrik", + "Cem", + "Charlie", + "Chris", + "Christian", + "Christiano", + "Christoph", + "Christopher", + "Claas", + "Clemens", + "Colin", + "Collin", + "Conner", + "Connor", + "Constantin", + "Corvin", + "Curt", + "Damian", + "Damien", + "Daniel", + "Danilo", + "Danny", + "Darian", + "Dario", + "Darius", + "Darren", + "David", + "Davide", + "Davin", + "Dean", + "Deniz", + "Dennis", + "Denny", + "Devin", + "Diego", + "Dion", + "Domenic", + "Domenik", + "Dominic", + "Dominik", + "Dorian", + "Dustin", + "Dylan", + "Ecrin", + "Eddi", + "Eddy", + "Edgar", + "Edwin", + "Efe", + "Ege", + "Elia", + "Eliah", + "Elias", + "Elijah", + "Emanuel", + "Emil", + "Emilian", + "Emilio", + "Emir", + "Emirhan", + "Emre", + "Enes", + "Enno", + "Enrico", + "Eren", + "Eric", + "Erik", + "Etienne", + "Fabian", + "Fabien", + "Fabio", + "Fabrice", + "Falk", + "Felix", + "Ferdinand", + "Fiete", + "Filip", + "Finlay", + "Finley", + "Finn", + "Finnley", + "Florian", + "Francesco", + "Franz", + "Frederic", + "Frederick", + "Frederik", + "Friedrich", + "Fritz", + "Furkan", + "Fynn", + "Gabriel", + "Georg", + "Gerrit", + "Gian", + "Gianluca", + "Gino", + "Giuliano", + "Giuseppe", + "Gregor", + "Gustav", + "Hagen", + "Hamza", + "Hannes", + "Hanno", + "Hans", + "Hasan", + "Hassan", + "Hauke", + "Hendrik", + "Hennes", + "Henning", + "Henri", + "Henrick", + "Henrik", + "Henry", + "Hugo", + "Hussein", + "Ian", + "Ibrahim", + "Ilias", + "Ilja", + "Ilyas", + "Immanuel", + "Ismael", + "Ismail", + "Ivan", + "Iven", + "Jack", + "Jacob", + "Jaden", + "Jakob", + "Jamal", + "James", + "Jamie", + "Jan", + "Janek", + "Janis", + "Janne", + "Jannek", + "Jannes", + "Jannik", + "Jannis", + "Jano", + "Janosch", + "Jared", + "Jari", + "Jarne", + "Jarno", + "Jaron", + "Jason", + "Jasper", + "Jay", + "Jayden", + "Jayson", + "Jean", + "Jens", + "Jeremias", + "Jeremie", + "Jeremy", + "Jermaine", + "Jerome", + "Jesper", + "Jesse", + "Jim", + "Jimmy", + "Joe", + "Joel", + "Joey", + "Johann", + "Johannes", + "John", + "Johnny", + "Jon", + "Jona", + "Jonah", + "Jonas", + "Jonathan", + "Jonte", + "Joost", + "Jordan", + "Joris", + "Joscha", + "Joschua", + "Josef", + "Joseph", + "Josh", + "Joshua", + "Josua", + "Juan", + "Julian", + "Julien", + "Julius", + "Juri", + "Justin", + "Justus", + "Kaan", + "Kai", + "Kalle", + "Karim", + "Karl", + "Karlo", + "Kay", + "Keanu", + "Kenan", + "Kenny", + "Keno", + "Kerem", + "Kerim", + "Kevin", + "Kian", + "Kilian", + "Kim", + "Kimi", + "Kjell", + "Klaas", + "Klemens", + "Konrad", + "Konstantin", + "Koray", + "Korbinian", + "Kurt", + "Lars", + "Lasse", + "Laurence", + "Laurens", + "Laurenz", + "Laurin", + "Lean", + "Leander", + "Leandro", + "Leif", + "Len", + "Lenn", + "Lennard", + "Lennart", + "Lennert", + "Lennie", + "Lennox", + "Lenny", + "Leo", + "Leon", + "Leonard", + "Leonardo", + "Leonhard", + "Leonidas", + "Leopold", + "Leroy", + "Levent", + "Levi", + "Levin", + "Lewin", + "Lewis", + "Liam", + "Lian", + "Lias", + "Lino", + "Linus", + "Lio", + "Lion", + "Lionel", + "Logan", + "Lorenz", + "Lorenzo", + "Loris", + "Louis", + "Luan", + "Luc", + "Luca", + "Lucas", + "Lucian", + "Lucien", + "Ludwig", + "Luis", + "Luiz", + "Luk", + "Luka", + "Lukas", + "Luke", + "Lutz", + "Maddox", + "Mads", + "Magnus", + "Maik", + "Maksim", + "Malik", + "Malte", + "Manuel", + "Marc", + "Marcel", + "Marco", + "Marcus", + "Marek", + "Marian", + "Mario", + "Marius", + "Mark", + "Marko", + "Markus", + "Marlo", + "Marlon", + "Marten", + "Martin", + "Marvin", + "Marwin", + "Mateo", + "Mathis", + "Matis", + "Mats", + "Matteo", + "Mattes", + "Matthias", + "Matthis", + "Matti", + "Mattis", + "Maurice", + "Max", + "Maxim", + "Maximilian", + "Mehmet", + "Meik", + "Melvin", + "Merlin", + "Mert", + "Michael", + "Michel", + "Mick", + "Miguel", + "Mika", + "Mikail", + "Mike", + "Milan", + "Milo", + "Mio", + "Mirac", + "Mirco", + "Mirko", + "Mohamed", + "Mohammad", + "Mohammed", + "Moritz", + "Morten", + "Muhammed", + "Murat", + "Mustafa", + "Nathan", + "Nathanael", + "Nelson", + "Neo", + "Nevio", + "Nick", + "Niclas", + "Nico", + "Nicolai", + "Nicolas", + "Niels", + "Nikita", + "Niklas", + "Niko", + "Nikolai", + "Nikolas", + "Nils", + "Nino", + "Noah", + "Noel", + "Norman", + "Odin", + "Oke", + "Ole", + "Oliver", + "Omar", + "Onur", + "Oscar", + "Oskar", + "Pascal", + "Patrice", + "Patrick", + "Paul", + "Peer", + "Pepe", + "Peter", + "Phil", + "Philip", + "Philipp", + "Pierre", + "Piet", + "Pit", + "Pius", + "Quentin", + "Quirin", + "Rafael", + "Raik", + "Ramon", + "Raphael", + "Rasmus", + "Raul", + "Rayan", + "René", + "Ricardo", + "Riccardo", + "Richard", + "Rick", + "Rico", + "Robert", + "Robin", + "Rocco", + "Roman", + "Romeo", + "Ron", + "Ruben", + "Ryan", + "Said", + "Salih", + "Sam", + "Sami", + "Sammy", + "Samuel", + "Sandro", + "Santino", + "Sascha", + "Sean", + "Sebastian", + "Selim", + "Semih", + "Shawn", + "Silas", + "Simeon", + "Simon", + "Sinan", + "Sky", + "Stefan", + "Steffen", + "Stephan", + "Steve", + "Steven", + "Sven", + "Sönke", + "Sören", + "Taha", + "Tamino", + "Tammo", + "Tarik", + "Tayler", + "Taylor", + "Teo", + "Theo", + "Theodor", + "Thies", + "Thilo", + "Thomas", + "Thorben", + "Thore", + "Thorge", + "Tiago", + "Til", + "Till", + "Tillmann", + "Tim", + "Timm", + "Timo", + "Timon", + "Timothy", + "Tino", + "Titus", + "Tizian", + "Tjark", + "Tobias", + "Tom", + "Tommy", + "Toni", + "Tony", + "Torben", + "Tore", + "Tristan", + "Tyler", + "Tyron", + "Umut", + "Valentin", + "Valentino", + "Veit", + "Victor", + "Viktor", + "Vin", + "Vincent", + "Vito", + "Vitus", + "Wilhelm", + "Willi", + "William", + "Willy", + "Xaver", + "Yannic", + "Yannick", + "Yannik", + "Yannis", + "Yasin", + "Youssef", + "Yunus", + "Yusuf", + "Yven", + "Yves", + "Ömer", + "Aaliyah", + "Abby", + "Abigail", + "Ada", + "Adelina", + "Adriana", + "Aileen", + "Aimee", + "Alana", + "Alea", + "Alena", + "Alessa", + "Alessia", + "Alexa", + "Alexandra", + "Alexia", + "Alexis", + "Aleyna", + "Alia", + "Alica", + "Alice", + "Alicia", + "Alina", + "Alisa", + "Alisha", + "Alissa", + "Aliya", + "Aliyah", + "Allegra", + "Alma", + "Alyssa", + "Amalia", + "Amanda", + "Amelia", + "Amelie", + "Amina", + "Amira", + "Amy", + "Ana", + "Anabel", + "Anastasia", + "Andrea", + "Angela", + "Angelina", + "Angelique", + "Anja", + "Ann", + "Anna", + "Annabel", + "Annabell", + "Annabelle", + "Annalena", + "Anne", + "Anneke", + "Annelie", + "Annemarie", + "Anni", + "Annie", + "Annika", + "Anny", + "Anouk", + "Antonia", + "Arda", + "Ariana", + "Ariane", + "Arwen", + "Ashley", + "Asya", + "Aurelia", + "Aurora", + "Ava", + "Ayleen", + "Aylin", + "Ayse", + "Azra", + "Betty", + "Bianca", + "Bianka", + "Caitlin", + "Cara", + "Carina", + "Carla", + "Carlotta", + "Carmen", + "Carolin", + "Carolina", + "Caroline", + "Cassandra", + "Catharina", + "Catrin", + "Cecile", + "Cecilia", + "Celia", + "Celina", + "Celine", + "Ceyda", + "Ceylin", + "Chantal", + "Charleen", + "Charlotta", + "Charlotte", + "Chayenne", + "Cheyenne", + "Chiara", + "Christin", + "Christina", + "Cindy", + "Claire", + "Clara", + "Clarissa", + "Colleen", + "Collien", + "Cora", + "Corinna", + "Cosima", + "Dana", + "Daniela", + "Daria", + "Darleen", + "Defne", + "Delia", + "Denise", + "Diana", + "Dilara", + "Dina", + "Dorothea", + "Ecrin", + "Eda", + "Eileen", + "Ela", + "Elaine", + "Elanur", + "Elea", + "Elena", + "Eleni", + "Eleonora", + "Eliana", + "Elif", + "Elina", + "Elisa", + "Elisabeth", + "Ella", + "Ellen", + "Elli", + "Elly", + "Elsa", + "Emelie", + "Emely", + "Emilia", + "Emilie", + "Emily", + "Emma", + "Emmely", + "Emmi", + "Emmy", + "Enie", + "Enna", + "Enya", + "Esma", + "Estelle", + "Esther", + "Eva", + "Evelin", + "Evelina", + "Eveline", + "Evelyn", + "Fabienne", + "Fatima", + "Fatma", + "Felicia", + "Felicitas", + "Felina", + "Femke", + "Fenja", + "Fine", + "Finia", + "Finja", + "Finnja", + "Fiona", + "Flora", + "Florentine", + "Francesca", + "Franka", + "Franziska", + "Frederike", + "Freya", + "Frida", + "Frieda", + "Friederike", + "Giada", + "Gina", + "Giulia", + "Giuliana", + "Greta", + "Hailey", + "Hana", + "Hanna", + "Hannah", + "Heidi", + "Helen", + "Helena", + "Helene", + "Helin", + "Henriette", + "Henrike", + "Hermine", + "Ida", + "Ilayda", + "Imke", + "Ina", + "Ines", + "Inga", + "Inka", + "Irem", + "Isa", + "Isabel", + "Isabell", + "Isabella", + "Isabelle", + "Ivonne", + "Jacqueline", + "Jamie", + "Jamila", + "Jana", + "Jane", + "Janin", + "Janina", + "Janine", + "Janna", + "Janne", + "Jara", + "Jasmin", + "Jasmina", + "Jasmine", + "Jella", + "Jenna", + "Jennifer", + "Jenny", + "Jessica", + "Jessy", + "Jette", + "Jil", + "Jill", + "Joana", + "Joanna", + "Joelina", + "Joeline", + "Joelle", + "Johanna", + "Joleen", + "Jolie", + "Jolien", + "Jolin", + "Jolina", + "Joline", + "Jona", + "Jonah", + "Jonna", + "Josefin", + "Josefine", + "Josephin", + "Josephine", + "Josie", + "Josy", + "Joy", + "Joyce", + "Judith", + "Judy", + "Jule", + "Julia", + "Juliana", + "Juliane", + "Julie", + "Julienne", + "Julika", + "Julina", + "Juna", + "Justine", + "Kaja", + "Karina", + "Karla", + "Karlotta", + "Karolina", + "Karoline", + "Kassandra", + "Katarina", + "Katharina", + "Kathrin", + "Katja", + "Katrin", + "Kaya", + "Kayra", + "Kiana", + "Kiara", + "Kim", + "Kimberley", + "Kimberly", + "Kira", + "Klara", + "Korinna", + "Kristin", + "Kyra", + "Laila", + "Lana", + "Lara", + "Larissa", + "Laura", + "Laureen", + "Lavinia", + "Lea", + "Leah", + "Leana", + "Leandra", + "Leann", + "Lee", + "Leila", + "Lena", + "Lene", + "Leni", + "Lenia", + "Lenja", + "Lenya", + "Leona", + "Leoni", + "Leonie", + "Leonora", + "Leticia", + "Letizia", + "Levke", + "Leyla", + "Lia", + "Liah", + "Liana", + "Lili", + "Lilia", + "Lilian", + "Liliana", + "Lilith", + "Lilli", + "Lillian", + "Lilly", + "Lily", + "Lina", + "Linda", + "Lindsay", + "Line", + "Linn", + "Linnea", + "Lisa", + "Lisann", + "Lisanne", + "Liv", + "Livia", + "Liz", + "Lola", + "Loreen", + "Lorena", + "Lotta", + "Lotte", + "Louisa", + "Louise", + "Luana", + "Luca", + "Lucia", + "Lucie", + "Lucienne", + "Lucy", + "Luisa", + "Luise", + "Luka", + "Luna", + "Luzie", + "Lya", + "Lydia", + "Lyn", + "Lynn", + "Madeleine", + "Madita", + "Madleen", + "Madlen", + "Magdalena", + "Maike", + "Mailin", + "Maira", + "Maja", + "Malena", + "Malia", + "Malin", + "Malina", + "Mandy", + "Mara", + "Marah", + "Mareike", + "Maren", + "Maria", + "Mariam", + "Marie", + "Marieke", + "Mariella", + "Marika", + "Marina", + "Marisa", + "Marissa", + "Marit", + "Marla", + "Marleen", + "Marlen", + "Marlena", + "Marlene", + "Marta", + "Martha", + "Mary", + "Maryam", + "Mathilda", + "Mathilde", + "Matilda", + "Maxi", + "Maxima", + "Maxine", + "Maya", + "Mayra", + "Medina", + "Medine", + "Meike", + "Melanie", + "Melek", + "Melike", + "Melina", + "Melinda", + "Melis", + "Melisa", + "Melissa", + "Merle", + "Merve", + "Meryem", + "Mette", + "Mia", + "Michaela", + "Michelle", + "Mieke", + "Mila", + "Milana", + "Milena", + "Milla", + "Mina", + "Mira", + "Miray", + "Miriam", + "Mirja", + "Mona", + "Monique", + "Nadine", + "Nadja", + "Naemi", + "Nancy", + "Naomi", + "Natalia", + "Natalie", + "Nathalie", + "Neele", + "Nela", + "Nele", + "Nelli", + "Nelly", + "Nia", + "Nicole", + "Nika", + "Nike", + "Nikita", + "Nila", + "Nina", + "Nisa", + "Noemi", + "Nora", + "Olivia", + "Patricia", + "Patrizia", + "Paula", + "Paulina", + "Pauline", + "Penelope", + "Philine", + "Phoebe", + "Pia", + "Rahel", + "Rania", + "Rebecca", + "Rebekka", + "Riana", + "Rieke", + "Rike", + "Romina", + "Romy", + "Ronja", + "Rosa", + "Rosalie", + "Ruby", + "Sabrina", + "Sahra", + "Sally", + "Salome", + "Samantha", + "Samia", + "Samira", + "Sandra", + "Sandy", + "Sanja", + "Saphira", + "Sara", + "Sarah", + "Saskia", + "Selin", + "Selina", + "Selma", + "Sena", + "Sidney", + "Sienna", + "Silja", + "Sina", + "Sinja", + "Smilla", + "Sofia", + "Sofie", + "Sonja", + "Sophia", + "Sophie", + "Soraya", + "Stefanie", + "Stella", + "Stephanie", + "Stina", + "Sude", + "Summer", + "Susanne", + "Svea", + "Svenja", + "Sydney", + "Tabea", + "Talea", + "Talia", + "Tamara", + "Tamia", + "Tamina", + "Tanja", + "Tara", + "Tarja", + "Teresa", + "Tessa", + "Thalea", + "Thalia", + "Thea", + "Theresa", + "Tia", + "Tina", + "Tomke", + "Tuana", + "Valentina", + "Valeria", + "Valerie", + "Vanessa", + "Vera", + "Veronika", + "Victoria", + "Viktoria", + "Viola", + "Vivian", + "Vivien", + "Vivienne", + "Wibke", + "Wiebke", + "Xenia", + "Yara", + "Yaren", + "Yasmin", + "Ylvi", + "Ylvie", + "Yvonne", + "Zara", + "Zehra", + "Zeynep", + "Zoe", + "Zoey", + "Zoé" + ]; + +},{}],41:[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.nobility_title_prefix = require("./nobility_title_prefix"); + name.name = require("./name"); + +},{"./first_name":40,"./last_name":42,"./name":43,"./nobility_title_prefix":44,"./prefix":45}],42:[function(require,module,exports){ + module["exports"] = [ + "Abel", + "Abicht", + "Abraham", + "Abramovic", + "Abt", + "Achilles", + "Achkinadze", + "Ackermann", + "Adam", + "Adams", + "Ade", + "Agostini", + "Ahlke", + "Ahrenberg", + "Ahrens", + "Aigner", + "Albert", + "Albrecht", + "Alexa", + "Alexander", + "Alizadeh", + "Allgeyer", + "Amann", + "Amberg", + "Anding", + "Anggreny", + "Apitz", + "Arendt", + "Arens", + "Arndt", + "Aryee", + "Aschenbroich", + "Assmus", + "Astafei", + "Auer", + "Axmann", + "Baarck", + "Bachmann", + "Badane", + "Bader", + "Baganz", + "Bahl", + "Bak", + "Balcer", + "Balck", + "Balkow", + "Balnuweit", + "Balzer", + "Banse", + "Barr", + "Bartels", + "Barth", + "Barylla", + "Baseda", + "Battke", + "Bauer", + "Bauermeister", + "Baumann", + "Baumeister", + "Bauschinger", + "Bauschke", + "Bayer", + "Beavogui", + "Beck", + "Beckel", + "Becker", + "Beckmann", + "Bedewitz", + "Beele", + "Beer", + "Beggerow", + "Beh", + "Behr", + "Behrenbruch", + "Belz", + "Bender", + "Benecke", + "Benner", + "Benninger", + "Benzing", + "Berends", + "Berger", + "Berner", + "Berning", + "Bertenbreiter", + "Best", + "Bethke", + "Betz", + "Beushausen", + "Beutelspacher", + "Beyer", + "Biba", + "Bichler", + "Bickel", + "Biedermann", + "Bieler", + "Bielert", + "Bienasch", + "Bienias", + "Biesenbach", + "Bigdeli", + "Birkemeyer", + "Bittner", + "Blank", + "Blaschek", + "Blassneck", + "Bloch", + "Blochwitz", + "Blockhaus", + "Blum", + "Blume", + "Bock", + "Bode", + "Bogdashin", + "Bogenrieder", + "Bohge", + "Bolm", + "Borgschulze", + "Bork", + "Bormann", + "Bornscheuer", + "Borrmann", + "Borsch", + "Boruschewski", + "Bos", + "Bosler", + "Bourrouag", + "Bouschen", + "Boxhammer", + "Boyde", + "Bozsik", + "Brand", + "Brandenburg", + "Brandis", + "Brandt", + "Brauer", + "Braun", + "Brehmer", + "Breitenstein", + "Bremer", + "Bremser", + "Brenner", + "Brettschneider", + "Breu", + "Breuer", + "Briesenick", + "Bringmann", + "Brinkmann", + "Brix", + "Broening", + "Brosch", + "Bruckmann", + "Bruder", + "Bruhns", + "Brunner", + "Bruns", + "Bräutigam", + "Brömme", + "Brüggmann", + "Buchholz", + "Buchrucker", + "Buder", + "Bultmann", + "Bunjes", + "Burger", + "Burghagen", + "Burkhard", + "Burkhardt", + "Burmeister", + "Busch", + "Buschbaum", + "Busemann", + "Buss", + "Busse", + "Bussmann", + "Byrd", + "Bäcker", + "Böhm", + "Bönisch", + "Börgeling", + "Börner", + "Böttner", + "Büchele", + "Bühler", + "Büker", + "Büngener", + "Bürger", + "Bürklein", + "Büscher", + "Büttner", + "Camara", + "Carlowitz", + "Carlsohn", + "Caspari", + "Caspers", + "Chapron", + "Christ", + "Cierpinski", + "Clarius", + "Cleem", + "Cleve", + "Co", + "Conrad", + "Cordes", + "Cornelsen", + "Cors", + "Cotthardt", + "Crews", + "Cronjäger", + "Crosskofp", + "Da", + "Dahm", + "Dahmen", + "Daimer", + "Damaske", + "Danneberg", + "Danner", + "Daub", + "Daubner", + "Daudrich", + "Dauer", + "Daum", + "Dauth", + "Dautzenberg", + "De", + "Decker", + "Deckert", + "Deerberg", + "Dehmel", + "Deja", + "Delonge", + "Demut", + "Dengler", + "Denner", + "Denzinger", + "Derr", + "Dertmann", + "Dethloff", + "Deuschle", + "Dieckmann", + "Diedrich", + "Diekmann", + "Dienel", + "Dies", + "Dietrich", + "Dietz", + "Dietzsch", + "Diezel", + "Dilla", + "Dingelstedt", + "Dippl", + "Dittmann", + "Dittmar", + "Dittmer", + "Dix", + "Dobbrunz", + "Dobler", + "Dohring", + "Dolch", + "Dold", + "Dombrowski", + "Donie", + "Doskoczynski", + "Dragu", + "Drechsler", + "Drees", + "Dreher", + "Dreier", + "Dreissigacker", + "Dressler", + "Drews", + "Duma", + "Dutkiewicz", + "Dyett", + "Dylus", + "Dächert", + "Döbel", + "Döring", + "Dörner", + "Dörre", + "Dück", + "Eberhard", + "Eberhardt", + "Ecker", + "Eckhardt", + "Edorh", + "Effler", + "Eggenmueller", + "Ehm", + "Ehmann", + "Ehrig", + "Eich", + "Eichmann", + "Eifert", + "Einert", + "Eisenlauer", + "Ekpo", + "Elbe", + "Eleyth", + "Elss", + "Emert", + "Emmelmann", + "Ender", + "Engel", + "Engelen", + "Engelmann", + "Eplinius", + "Erdmann", + "Erhardt", + "Erlei", + "Erm", + "Ernst", + "Ertl", + "Erwes", + "Esenwein", + "Esser", + "Evers", + "Everts", + "Ewald", + "Fahner", + "Faller", + "Falter", + "Farber", + "Fassbender", + "Faulhaber", + "Fehrig", + "Feld", + "Felke", + "Feller", + "Fenner", + "Fenske", + "Feuerbach", + "Fietz", + "Figl", + "Figura", + "Filipowski", + "Filsinger", + "Fincke", + "Fink", + "Finke", + "Fischer", + "Fitschen", + "Fleischer", + "Fleischmann", + "Floder", + "Florczak", + "Flore", + "Flottmann", + "Forkel", + "Forst", + "Frahmeke", + "Frank", + "Franke", + "Franta", + "Frantz", + "Franz", + "Franzis", + "Franzmann", + "Frauen", + "Frauendorf", + "Freigang", + "Freimann", + "Freimuth", + "Freisen", + "Frenzel", + "Frey", + "Fricke", + "Fried", + "Friedek", + "Friedenberg", + "Friedmann", + "Friedrich", + "Friess", + "Frisch", + "Frohn", + "Frosch", + "Fuchs", + "Fuhlbrügge", + "Fusenig", + "Fust", + "Förster", + "Gaba", + "Gabius", + "Gabler", + "Gadschiew", + "Gakstädter", + "Galander", + "Gamlin", + "Gamper", + "Gangnus", + "Ganzmann", + "Garatva", + "Gast", + "Gastel", + "Gatzka", + "Gauder", + "Gebhardt", + "Geese", + "Gehre", + "Gehrig", + "Gehring", + "Gehrke", + "Geiger", + "Geisler", + "Geissler", + "Gelling", + "Gens", + "Gerbennow", + "Gerdel", + "Gerhardt", + "Gerschler", + "Gerson", + "Gesell", + "Geyer", + "Ghirmai", + "Ghosh", + "Giehl", + "Gierisch", + "Giesa", + "Giesche", + "Gilde", + "Glatting", + "Goebel", + "Goedicke", + "Goldbeck", + "Goldfuss", + "Goldkamp", + "Goldkühle", + "Goller", + "Golling", + "Gollnow", + "Golomski", + "Gombert", + "Gotthardt", + "Gottschalk", + "Gotz", + "Goy", + "Gradzki", + "Graf", + "Grams", + "Grasse", + "Gratzky", + "Grau", + "Greb", + "Green", + "Greger", + "Greithanner", + "Greschner", + "Griem", + "Griese", + "Grimm", + "Gromisch", + "Gross", + "Grosser", + "Grossheim", + "Grosskopf", + "Grothaus", + "Grothkopp", + "Grotke", + "Grube", + "Gruber", + "Grundmann", + "Gruning", + "Gruszecki", + "Gröss", + "Grötzinger", + "Grün", + "Grüner", + "Gummelt", + "Gunkel", + "Gunther", + "Gutjahr", + "Gutowicz", + "Gutschank", + "Göbel", + "Göckeritz", + "Göhler", + "Görlich", + "Görmer", + "Götz", + "Götzelmann", + "Güldemeister", + "Günther", + "Günz", + "Gürbig", + "Haack", + "Haaf", + "Habel", + "Hache", + "Hackbusch", + "Hackelbusch", + "Hadfield", + "Hadwich", + "Haferkamp", + "Hahn", + "Hajek", + "Hallmann", + "Hamann", + "Hanenberger", + "Hannecker", + "Hanniske", + "Hansen", + "Hardy", + "Hargasser", + "Harms", + "Harnapp", + "Harter", + "Harting", + "Hartlieb", + "Hartmann", + "Hartwig", + "Hartz", + "Haschke", + "Hasler", + "Hasse", + "Hassfeld", + "Haug", + "Hauke", + "Haupt", + "Haverney", + "Heberstreit", + "Hechler", + "Hecht", + "Heck", + "Hedermann", + "Hehl", + "Heidelmann", + "Heidler", + "Heinemann", + "Heinig", + "Heinke", + "Heinrich", + "Heinze", + "Heiser", + "Heist", + "Hellmann", + "Helm", + "Helmke", + "Helpling", + "Hengmith", + "Henkel", + "Hennes", + "Henry", + "Hense", + "Hensel", + "Hentel", + "Hentschel", + "Hentschke", + "Hepperle", + "Herberger", + "Herbrand", + "Hering", + "Hermann", + "Hermecke", + "Herms", + "Herold", + "Herrmann", + "Herschmann", + "Hertel", + "Herweg", + "Herwig", + "Herzenberg", + "Hess", + "Hesse", + "Hessek", + "Hessler", + "Hetzler", + "Heuck", + "Heydemüller", + "Hiebl", + "Hildebrand", + "Hildenbrand", + "Hilgendorf", + "Hillard", + "Hiller", + "Hingsen", + "Hingst", + "Hinrichs", + "Hirsch", + "Hirschberg", + "Hirt", + "Hodea", + "Hoffman", + "Hoffmann", + "Hofmann", + "Hohenberger", + "Hohl", + "Hohn", + "Hohnheiser", + "Hold", + "Holdt", + "Holinski", + "Holl", + "Holtfreter", + "Holz", + "Holzdeppe", + "Holzner", + "Hommel", + "Honz", + "Hooss", + "Hoppe", + "Horak", + "Horn", + "Horna", + "Hornung", + "Hort", + "Howard", + "Huber", + "Huckestein", + "Hudak", + "Huebel", + "Hugo", + "Huhn", + "Hujo", + "Huke", + "Huls", + "Humbert", + "Huneke", + "Huth", + "Häber", + "Häfner", + "Höcke", + "Höft", + "Höhne", + "Hönig", + "Hördt", + "Hübenbecker", + "Hübl", + "Hübner", + "Hügel", + "Hüttcher", + "Hütter", + "Ibe", + "Ihly", + "Illing", + "Isak", + "Isekenmeier", + "Itt", + "Jacob", + "Jacobs", + "Jagusch", + "Jahn", + "Jahnke", + "Jakobs", + "Jakubczyk", + "Jambor", + "Jamrozy", + "Jander", + "Janich", + "Janke", + "Jansen", + "Jarets", + "Jaros", + "Jasinski", + "Jasper", + "Jegorov", + "Jellinghaus", + "Jeorga", + "Jerschabek", + "Jess", + "John", + "Jonas", + "Jossa", + "Jucken", + "Jung", + "Jungbluth", + "Jungton", + "Just", + "Jürgens", + "Kaczmarek", + "Kaesmacher", + "Kahl", + "Kahlert", + "Kahles", + "Kahlmeyer", + "Kaiser", + "Kalinowski", + "Kallabis", + "Kallensee", + "Kampf", + "Kampschulte", + "Kappe", + "Kappler", + "Karhoff", + "Karrass", + "Karst", + "Karsten", + "Karus", + "Kass", + "Kasten", + "Kastner", + "Katzinski", + "Kaufmann", + "Kaul", + "Kausemann", + "Kawohl", + "Kazmarek", + "Kedzierski", + "Keil", + "Keiner", + "Keller", + "Kelm", + "Kempe", + "Kemper", + "Kempter", + "Kerl", + "Kern", + "Kesselring", + "Kesselschläger", + "Kette", + "Kettenis", + "Keutel", + "Kick", + "Kiessling", + "Kinadeter", + "Kinzel", + "Kinzy", + "Kirch", + "Kirst", + "Kisabaka", + "Klaas", + "Klabuhn", + "Klapper", + "Klauder", + "Klaus", + "Kleeberg", + "Kleiber", + "Klein", + "Kleinert", + "Kleininger", + "Kleinmann", + "Kleinsteuber", + "Kleiss", + "Klemme", + "Klimczak", + "Klinger", + "Klink", + "Klopsch", + "Klose", + "Kloss", + "Kluge", + "Kluwe", + "Knabe", + "Kneifel", + "Knetsch", + "Knies", + "Knippel", + "Knobel", + "Knoblich", + "Knoll", + "Knorr", + "Knorscheidt", + "Knut", + "Kobs", + "Koch", + "Kochan", + "Kock", + "Koczulla", + "Koderisch", + "Koehl", + "Koehler", + "Koenig", + "Koester", + "Kofferschlager", + "Koha", + "Kohle", + "Kohlmann", + "Kohnle", + "Kohrt", + "Koj", + "Kolb", + "Koleiski", + "Kolokas", + "Komoll", + "Konieczny", + "Konig", + "Konow", + "Konya", + "Koob", + "Kopf", + "Kosenkow", + "Koster", + "Koszewski", + "Koubaa", + "Kovacs", + "Kowalick", + "Kowalinski", + "Kozakiewicz", + "Krabbe", + "Kraft", + "Kral", + "Kramer", + "Krauel", + "Kraus", + "Krause", + "Krauspe", + "Kreb", + "Krebs", + "Kreissig", + "Kresse", + "Kreutz", + "Krieger", + "Krippner", + "Krodinger", + "Krohn", + "Krol", + "Kron", + "Krueger", + "Krug", + "Kruger", + "Krull", + "Kruschinski", + "Krämer", + "Kröckert", + "Kröger", + "Krüger", + "Kubera", + "Kufahl", + "Kuhlee", + "Kuhnen", + "Kulimann", + "Kulma", + "Kumbernuss", + "Kummle", + "Kunz", + "Kupfer", + "Kupprion", + "Kuprion", + "Kurnicki", + "Kurrat", + "Kurschilgen", + "Kuschewitz", + "Kuschmann", + "Kuske", + "Kustermann", + "Kutscherauer", + "Kutzner", + "Kwadwo", + "Kähler", + "Käther", + "Köhler", + "Köhrbrück", + "Köhre", + "Kölotzei", + "König", + "Köpernick", + "Köseoglu", + "Kúhn", + "Kúhnert", + "Kühn", + "Kühnel", + "Kühnemund", + "Kühnert", + "Kühnke", + "Küsters", + "Küter", + "Laack", + "Lack", + "Ladewig", + "Lakomy", + "Lammert", + "Lamos", + "Landmann", + "Lang", + "Lange", + "Langfeld", + "Langhirt", + "Lanig", + "Lauckner", + "Lauinger", + "Laurén", + "Lausecker", + "Laux", + "Laws", + "Lax", + "Leberer", + "Lehmann", + "Lehner", + "Leibold", + "Leide", + "Leimbach", + "Leipold", + "Leist", + "Leiter", + "Leiteritz", + "Leitheim", + "Leiwesmeier", + "Lenfers", + "Lenk", + "Lenz", + "Lenzen", + "Leo", + "Lepthin", + "Lesch", + "Leschnik", + "Letzelter", + "Lewin", + "Lewke", + "Leyckes", + "Lg", + "Lichtenfeld", + "Lichtenhagen", + "Lichtl", + "Liebach", + "Liebe", + "Liebich", + "Liebold", + "Lieder", + "Lienshöft", + "Linden", + "Lindenberg", + "Lindenmayer", + "Lindner", + "Linke", + "Linnenbaum", + "Lippe", + "Lipske", + "Lipus", + "Lischka", + "Lobinger", + "Logsch", + "Lohmann", + "Lohre", + "Lohse", + "Lokar", + "Loogen", + "Lorenz", + "Losch", + "Loska", + "Lott", + "Loy", + "Lubina", + "Ludolf", + "Lufft", + "Lukoschek", + "Lutje", + "Lutz", + "Löser", + "Löwa", + "Lübke", + "Maak", + "Maczey", + "Madetzky", + "Madubuko", + "Mai", + "Maier", + "Maisch", + "Malek", + "Malkus", + "Mallmann", + "Malucha", + "Manns", + "Manz", + "Marahrens", + "Marchewski", + "Margis", + "Markowski", + "Marl", + "Marner", + "Marquart", + "Marschek", + "Martel", + "Marten", + "Martin", + "Marx", + "Marxen", + "Mathes", + "Mathies", + "Mathiszik", + "Matschke", + "Mattern", + "Matthes", + "Matula", + "Mau", + "Maurer", + "Mauroff", + "May", + "Maybach", + "Mayer", + "Mebold", + "Mehl", + "Mehlhorn", + "Mehlorn", + "Meier", + "Meisch", + "Meissner", + "Meloni", + "Melzer", + "Menga", + "Menne", + "Mensah", + "Mensing", + "Merkel", + "Merseburg", + "Mertens", + "Mesloh", + "Metzger", + "Metzner", + "Mewes", + "Meyer", + "Michallek", + "Michel", + "Mielke", + "Mikitenko", + "Milde", + "Minah", + "Mintzlaff", + "Mockenhaupt", + "Moede", + "Moedl", + "Moeller", + "Moguenara", + "Mohr", + "Mohrhard", + "Molitor", + "Moll", + "Moller", + "Molzan", + "Montag", + "Moormann", + "Mordhorst", + "Morgenstern", + "Morhelfer", + "Moritz", + "Moser", + "Motchebon", + "Motzenbbäcker", + "Mrugalla", + "Muckenthaler", + "Mues", + "Muller", + "Mulrain", + "Mächtig", + "Mäder", + "Möcks", + "Mögenburg", + "Möhsner", + "Möldner", + "Möllenbeck", + "Möller", + "Möllinger", + "Mörsch", + "Mühleis", + "Müller", + "Münch", + "Nabein", + "Nabow", + "Nagel", + "Nannen", + "Nastvogel", + "Nau", + "Naubert", + "Naumann", + "Ne", + "Neimke", + "Nerius", + "Neubauer", + "Neubert", + "Neuendorf", + "Neumair", + "Neumann", + "Neupert", + "Neurohr", + "Neuschwander", + "Newton", + "Ney", + "Nicolay", + "Niedermeier", + "Nieklauson", + "Niklaus", + "Nitzsche", + "Noack", + "Nodler", + "Nolte", + "Normann", + "Norris", + "Northoff", + "Nowak", + "Nussbeck", + "Nwachukwu", + "Nytra", + "Nöh", + "Oberem", + "Obergföll", + "Obermaier", + "Ochs", + "Oeser", + "Olbrich", + "Onnen", + "Ophey", + "Oppong", + "Orth", + "Orthmann", + "Oschkenat", + "Osei", + "Osenberg", + "Ostendarp", + "Ostwald", + "Otte", + "Otto", + "Paesler", + "Pajonk", + "Pallentin", + "Panzig", + "Paschke", + "Patzwahl", + "Paukner", + "Peselman", + "Peter", + "Peters", + "Petzold", + "Pfeiffer", + "Pfennig", + "Pfersich", + "Pfingsten", + "Pflieger", + "Pflügner", + "Philipp", + "Pichlmaier", + "Piesker", + "Pietsch", + "Pingpank", + "Pinnock", + "Pippig", + "Pitschugin", + "Plank", + "Plass", + "Platzer", + "Plauk", + "Plautz", + "Pletsch", + "Plotzitzka", + "Poehn", + "Poeschl", + "Pogorzelski", + "Pohl", + "Pohland", + "Pohle", + "Polifka", + "Polizzi", + "Pollmächer", + "Pomp", + "Ponitzsch", + "Porsche", + "Porth", + "Poschmann", + "Poser", + "Pottel", + "Prah", + "Prange", + "Prediger", + "Pressler", + "Preuk", + "Preuss", + "Prey", + "Priemer", + "Proske", + "Pusch", + "Pöche", + "Pöge", + "Raabe", + "Rabenstein", + "Rach", + "Radtke", + "Rahn", + "Ranftl", + "Rangen", + "Ranz", + "Rapp", + "Rath", + "Rau", + "Raubuch", + "Raukuc", + "Rautenkranz", + "Rehwagen", + "Reiber", + "Reichardt", + "Reichel", + "Reichling", + "Reif", + "Reifenrath", + "Reimann", + "Reinberg", + "Reinelt", + "Reinhardt", + "Reinke", + "Reitze", + "Renk", + "Rentz", + "Renz", + "Reppin", + "Restle", + "Restorff", + "Retzke", + "Reuber", + "Reumann", + "Reus", + "Reuss", + "Reusse", + "Rheder", + "Rhoden", + "Richards", + "Richter", + "Riedel", + "Riediger", + "Rieger", + "Riekmann", + "Riepl", + "Riermeier", + "Riester", + "Riethmüller", + "Rietmüller", + "Rietscher", + "Ringel", + "Ringer", + "Rink", + "Ripken", + "Ritosek", + "Ritschel", + "Ritter", + "Rittweg", + "Ritz", + "Roba", + "Rockmeier", + "Rodehau", + "Rodowski", + "Roecker", + "Roggatz", + "Rohländer", + "Rohrer", + "Rokossa", + "Roleder", + "Roloff", + "Roos", + "Rosbach", + "Roschinsky", + "Rose", + "Rosenauer", + "Rosenbauer", + "Rosenthal", + "Rosksch", + "Rossberg", + "Rossler", + "Roth", + "Rother", + "Ruch", + "Ruckdeschel", + "Rumpf", + "Rupprecht", + "Ruth", + "Ryjikh", + "Ryzih", + "Rädler", + "Räntsch", + "Rödiger", + "Röse", + "Röttger", + "Rücker", + "Rüdiger", + "Rüter", + "Sachse", + "Sack", + "Saflanis", + "Sagafe", + "Sagonas", + "Sahner", + "Saile", + "Sailer", + "Salow", + "Salzer", + "Salzmann", + "Sammert", + "Sander", + "Sarvari", + "Sattelmaier", + "Sauer", + "Sauerland", + "Saumweber", + "Savoia", + "Scc", + "Schacht", + "Schaefer", + "Schaffarzik", + "Schahbasian", + "Scharf", + "Schedler", + "Scheer", + "Schelk", + "Schellenbeck", + "Schembera", + "Schenk", + "Scherbarth", + "Scherer", + "Schersing", + "Scherz", + "Scheurer", + "Scheuring", + "Scheytt", + "Schielke", + "Schieskow", + "Schildhauer", + "Schilling", + "Schima", + "Schimmer", + "Schindzielorz", + "Schirmer", + "Schirrmeister", + "Schlachter", + "Schlangen", + "Schlawitz", + "Schlechtweg", + "Schley", + "Schlicht", + "Schlitzer", + "Schmalzle", + "Schmid", + "Schmidt", + "Schmidtchen", + "Schmitt", + "Schmitz", + "Schmuhl", + "Schneider", + "Schnelting", + "Schnieder", + "Schniedermeier", + "Schnürer", + "Schoberg", + "Scholz", + "Schonberg", + "Schondelmaier", + "Schorr", + "Schott", + "Schottmann", + "Schouren", + "Schrader", + "Schramm", + "Schreck", + "Schreiber", + "Schreiner", + "Schreiter", + "Schroder", + "Schröder", + "Schuermann", + "Schuff", + "Schuhaj", + "Schuldt", + "Schult", + "Schulte", + "Schultz", + "Schultze", + "Schulz", + "Schulze", + "Schumacher", + "Schumann", + "Schupp", + "Schuri", + "Schuster", + "Schwab", + "Schwalm", + "Schwanbeck", + "Schwandke", + "Schwanitz", + "Schwarthoff", + "Schwartz", + "Schwarz", + "Schwarzer", + "Schwarzkopf", + "Schwarzmeier", + "Schwatlo", + "Schweisfurth", + "Schwennen", + "Schwerdtner", + "Schwidde", + "Schwirkschlies", + "Schwuchow", + "Schäfer", + "Schäffel", + "Schäffer", + "Schäning", + "Schöckel", + "Schönball", + "Schönbeck", + "Schönberg", + "Schönebeck", + "Schönenberger", + "Schönfeld", + "Schönherr", + "Schönlebe", + "Schötz", + "Schüler", + "Schüppel", + "Schütz", + "Schütze", + "Seeger", + "Seelig", + "Sehls", + "Seibold", + "Seidel", + "Seiders", + "Seigel", + "Seiler", + "Seitz", + "Semisch", + "Senkel", + "Sewald", + "Siebel", + "Siebert", + "Siegling", + "Sielemann", + "Siemon", + "Siener", + "Sievers", + "Siewert", + "Sihler", + "Sillah", + "Simon", + "Sinnhuber", + "Sischka", + "Skibicki", + "Sladek", + "Slotta", + "Smieja", + "Soboll", + "Sokolowski", + "Soller", + "Sollner", + "Sommer", + "Somssich", + "Sonn", + "Sonnabend", + "Spahn", + "Spank", + "Spelmeyer", + "Spiegelburg", + "Spielvogel", + "Spinner", + "Spitzmüller", + "Splinter", + "Sporrer", + "Sprenger", + "Spöttel", + "Stahl", + "Stang", + "Stanger", + "Stauss", + "Steding", + "Steffen", + "Steffny", + "Steidl", + "Steigauf", + "Stein", + "Steinecke", + "Steinert", + "Steinkamp", + "Steinmetz", + "Stelkens", + "Stengel", + "Stengl", + "Stenzel", + "Stepanov", + "Stephan", + "Stern", + "Steuk", + "Stief", + "Stifel", + "Stoll", + "Stolle", + "Stolz", + "Storl", + "Storp", + "Stoutjesdijk", + "Stratmann", + "Straub", + "Strausa", + "Streck", + "Streese", + "Strege", + "Streit", + "Streller", + "Strieder", + "Striezel", + "Strogies", + "Strohschank", + "Strunz", + "Strutz", + "Stube", + "Stöckert", + "Stöppler", + "Stöwer", + "Stürmer", + "Suffa", + "Sujew", + "Sussmann", + "Suthe", + "Sutschet", + "Swillims", + "Szendrei", + "Sören", + "Sürth", + "Tafelmeier", + "Tang", + "Tasche", + "Taufratshofer", + "Tegethof", + "Teichmann", + "Tepper", + "Terheiden", + "Terlecki", + "Teufel", + "Theele", + "Thieke", + "Thimm", + "Thiomas", + "Thomas", + "Thriene", + "Thränhardt", + "Thust", + "Thyssen", + "Thöne", + "Tidow", + "Tiedtke", + "Tietze", + "Tilgner", + "Tillack", + "Timmermann", + "Tischler", + "Tischmann", + "Tittman", + "Tivontschik", + "Tonat", + "Tonn", + "Trampeli", + "Trauth", + "Trautmann", + "Travan", + "Treff", + "Tremmel", + "Tress", + "Tsamonikian", + "Tschiers", + "Tschirch", + "Tuch", + "Tucholke", + "Tudow", + "Tuschmo", + "Tächl", + "Többen", + "Töpfer", + "Uhlemann", + "Uhlig", + "Uhrig", + "Uibel", + "Uliczka", + "Ullmann", + "Ullrich", + "Umbach", + "Umlauft", + "Umminger", + "Unger", + "Unterpaintner", + "Urban", + "Urbaniak", + "Urbansky", + "Urhig", + "Vahlensieck", + "Van", + "Vangermain", + "Vater", + "Venghaus", + "Verniest", + "Verzi", + "Vey", + "Viellehner", + "Vieweg", + "Voelkel", + "Vogel", + "Vogelgsang", + "Vogt", + "Voigt", + "Vokuhl", + "Volk", + "Volker", + "Volkmann", + "Von", + "Vona", + "Vontein", + "Wachenbrunner", + "Wachtel", + "Wagner", + "Waibel", + "Wakan", + "Waldmann", + "Wallner", + "Wallstab", + "Walter", + "Walther", + "Walton", + "Walz", + "Wanner", + "Wartenberg", + "Waschbüsch", + "Wassilew", + "Wassiluk", + "Weber", + "Wehrsen", + "Weidlich", + "Weidner", + "Weigel", + "Weight", + "Weiler", + "Weimer", + "Weis", + "Weiss", + "Weller", + "Welsch", + "Welz", + "Welzel", + "Weniger", + "Wenk", + "Werle", + "Werner", + "Werrmann", + "Wessel", + "Wessinghage", + "Weyel", + "Wezel", + "Wichmann", + "Wickert", + "Wiebe", + "Wiechmann", + "Wiegelmann", + "Wierig", + "Wiese", + "Wieser", + "Wilhelm", + "Wilky", + "Will", + "Willwacher", + "Wilts", + "Wimmer", + "Winkelmann", + "Winkler", + "Winter", + "Wischek", + "Wischer", + "Wissing", + "Wittich", + "Wittl", + "Wolf", + "Wolfarth", + "Wolff", + "Wollenberg", + "Wollmann", + "Woytkowska", + "Wujak", + "Wurm", + "Wyludda", + "Wölpert", + "Wöschler", + "Wühn", + "Wünsche", + "Zach", + "Zaczkiewicz", + "Zahn", + "Zaituc", + "Zandt", + "Zanner", + "Zapletal", + "Zauber", + "Zeidler", + "Zekl", + "Zender", + "Zeuch", + "Zeyen", + "Zeyhle", + "Ziegler", + "Zimanyi", + "Zimmer", + "Zimmermann", + "Zinser", + "Zintl", + "Zipp", + "Zipse", + "Zschunke", + "Zuber", + "Zwiener", + "Zümsande", + "Östringer", + "Überacker" + ]; + +},{}],43:[function(require,module,exports){ + module["exports"] = [ + "#{prefix} #{first_name} #{last_name}", + "#{first_name} #{nobility_title_prefix} #{last_name}", + "#{first_name} #{last_name}", + "#{first_name} #{last_name}", + "#{first_name} #{last_name}", + "#{first_name} #{last_name}" + ]; + +},{}],44:[function(require,module,exports){ + module["exports"] = [ + "zu", + "von", + "vom", + "von der" + ]; + +},{}],45:[function(require,module,exports){ + module["exports"] = [ + "Hr.", + "Fr.", + "Dr.", + "Prof. Dr." + ]; + +},{}],46:[function(require,module,exports){ + module["exports"] = [ + "(0###) #########", + "(0####) #######", + "+49-###-#######", + "+49-####-########" + ]; + +},{}],47:[function(require,module,exports){ + var phone_number = {}; + module['exports'] = phone_number; + phone_number.formats = require("./formats"); + +},{"./formats":46}],48:[function(require,module,exports){ + module.exports=require(14) +},{"/Users/a/dev/faker.js/lib/locales/de/address/building_number.js":14}],49:[function(require,module,exports){ + module["exports"] = [ + "#{city_name}" + ]; + +},{}],50:[function(require,module,exports){ + module["exports"] = [ + "Aigen im Mühlkreis", + "Allerheiligen bei Wildon", + "Altenfelden", + "Arriach", + "Axams", + "Baumgartenberg", + "Bergern im Dunkelsteinerwald", + "Berndorf bei Salzburg", + "Bregenz", + "Breitenbach am Inn", + "Deutsch-Wagram", + "Dienten am Hochkönig", + "Dietach", + "Dornbirn", + "Dürnkrut", + "Eben im Pongau", + "Ebenthal in Kärnten", + "Eichgraben", + "Eisenstadt", + "Ellmau", + "Feistritz am Wechsel", + "Finkenberg", + "Fiss", + "Frantschach-St. Gertraud", + "Fritzens", + "Gams bei Hieflau", + "Geiersberg", + "Graz", + "Großhöflein", + "Gößnitz", + "Hartl", + "Hausleiten", + "Herzogenburg", + "Hinterhornbach", + "Hochwolkersdorf", + "Ilz", + "Ilztal", + "Innerbraz", + "Innsbruck", + "Itter", + "Jagerberg", + "Jeging", + "Johnsbach", + "Johnsdorf-Brunn", + "Jungholz", + "Kirchdorf am Inn", + "Klagenfurt", + "Kottes-Purk", + "Krumau am Kamp", + "Krumbach", + "Lavamünd", + "Lech", + "Linz", + "Ludesch", + "Lödersdorf", + "Marbach an der Donau", + "Mattsee", + "Mautern an der Donau", + "Mauterndorf", + "Mitterbach am Erlaufsee", + "Neudorf bei Passail", + "Neudorf bei Staatz", + "Neukirchen an der Enknach", + "Neustift an der Lafnitz", + "Niederleis", + "Oberndorf in Tirol", + "Oberstorcha", + "Oberwaltersdorf", + "Oed-Oehling", + "Ort im Innkreis", + "Pilgersdorf", + "Pitschgau", + "Pollham", + "Preitenegg", + "Purbach am Neusiedler See", + "Rabenwald", + "Raiding", + "Rastenfeld", + "Ratten", + "Rettenegg", + "Salzburg", + "Sankt Johann im Saggautal", + "St. Peter am Kammersberg", + "St. Pölten", + "St. Veit an der Glan", + "Taxenbach", + "Tragwein", + "Trebesing", + "Trieben", + "Turnau", + "Ungerdorf", + "Unterauersbach", + "Unterstinkenbrunn", + "Untertilliach", + "Uttendorf", + "Vals", + "Velden am Wörther See", + "Viehhofen", + "Villach", + "Vitis", + "Waidhofen an der Thaya", + "Waldkirchen am Wesen", + "Weißkirchen an der Traun", + "Wien", + "Wimpassing im Schwarzatale", + "Ybbs an der Donau", + "Ybbsitz", + "Yspertal", + "Zeillern", + "Zell am Pettenfirst", + "Zell an der Pram", + "Zerlach", + "Zwölfaxing", + "Öblarn", + "Übelbach", + "Überackern", + "Übersaxen", + "Übersbach" + ]; + +},{}],51:[function(require,module,exports){ + module.exports=require(18) +},{"/Users/a/dev/faker.js/lib/locales/de/address/country.js":18}],52:[function(require,module,exports){ + module["exports"] = [ + "Österreich" + ]; + +},{}],53:[function(require,module,exports){ + var address = {}; + module['exports'] = address; + address.country = require("./country"); + address.street_root = require("./street_root"); + address.building_number = require("./building_number"); + address.secondary_address = require("./secondary_address"); + address.postcode = require("./postcode"); + address.state = require("./state"); + address.state_abbr = require("./state_abbr"); + address.city_name = require("./city_name"); + address.city = require("./city"); + address.street_name = require("./street_name"); + address.street_address = require("./street_address"); + address.default_country = require("./default_country"); + +},{"./building_number":48,"./city":49,"./city_name":50,"./country":51,"./default_country":52,"./postcode":54,"./secondary_address":55,"./state":56,"./state_abbr":57,"./street_address":58,"./street_name":59,"./street_root":60}],54:[function(require,module,exports){ + module["exports"] = [ + "####" + ]; + +},{}],55:[function(require,module,exports){ + module.exports=require(22) +},{"/Users/a/dev/faker.js/lib/locales/de/address/secondary_address.js":22}],56:[function(require,module,exports){ + module["exports"] = [ + "Burgenland", + "Kärnten", + "Niederösterreich", + "Oberösterreich", + "Salzburg", + "Steiermark", + "Tirol", + "Vorarlberg", + "Wien" + ]; + +},{}],57:[function(require,module,exports){ + module["exports"] = [ + "Bgld.", + "Ktn.", + "NÖ", + "OÖ", + "Sbg.", + "Stmk.", + "T", + "Vbg.", + "W" + ]; + +},{}],58:[function(require,module,exports){ + module.exports=require(25) +},{"/Users/a/dev/faker.js/lib/locales/de/address/street_address.js":25}],59:[function(require,module,exports){ + module.exports=require(26) +},{"/Users/a/dev/faker.js/lib/locales/de/address/street_name.js":26}],60:[function(require,module,exports){ + module["exports"] = [ + "Ahorn", + "Ahorngasse (St. Andrä)", + "Alleestraße (Poysbrunn)", + "Alpenlandstraße", + "Alte Poststraße", + "Alte Ufergasse", + "Am Kronawett (Hagenbrunn)", + "Am Mühlwasser", + "Am Rebenhang", + "Am Sternweg", + "Anton Wildgans-Straße", + "Auer-von-Welsbach-Weg", + "Auf der Stift", + "Aufeldgasse", + "Bahngasse", + "Bahnhofstraße", + "Bahnstraße (Gerhaus)", + "Basteigasse", + "Berggasse", + "Bergstraße", + "Birkenweg", + "Blasiussteig", + "Blattur", + "Bruderhofgasse", + "Brunnelligasse", + "Bühelweg", + "Darnautgasse", + "Donaugasse", + "Dorfplatz (Haselbach)", + "Dr.-Oberreiter-Straße", + "Dr.Karl Holoubek-Str.", + "Drautal Bundesstraße", + "Dürnrohrer Straße", + "Ebenthalerstraße", + "Eckgrabenweg", + "Erlenstraße", + "Erlenweg", + "Eschenweg", + "Etrichgasse", + "Fassergasse", + "Feichteggerwiese", + "Feld-Weg", + "Feldgasse", + "Feldstapfe", + "Fischpointweg", + "Flachbergstraße", + "Flurweg", + "Franz Schubert-Gasse", + "Franz-Schneeweiß-Weg", + "Franz-von-Assisi-Straße", + "Fritz-Pregl-Straße", + "Fuchsgrubenweg", + "Födlerweg", + "Föhrenweg", + "Fünfhaus (Paasdorf)", + "Gabelsbergerstraße", + "Gartenstraße", + "Geigen", + "Geigergasse", + "Gemeindeaugasse", + "Gemeindeplatz", + "Georg-Aichinger-Straße", + "Glanfeldbachweg", + "Graben (Burgauberg)", + "Grub", + "Gröretgasse", + "Grünbach", + "Gösting", + "Hainschwang", + "Hans-Mauracher-Straße", + "Hart", + "Teichstraße", + "Hauptplatz", + "Hauptstraße", + "Heideweg", + "Heinrich Landauer Gasse", + "Helenengasse", + "Hermann von Gilmweg", + "Hermann-Löns-Gasse", + "Herminengasse", + "Hernstorferstraße", + "Hirsdorf", + "Hochfeistritz", + "Hochhaus Neue Donau", + "Hof", + "Hussovits Gasse", + "Höggen", + "Hütten", + "Janzgasse", + "Jochriemgutstraße", + "Johann-Strauß-Gasse", + "Julius-Raab-Straße", + "Kahlenberger Straße", + "Karl Kraft-Straße", + "Kegelprielstraße", + "Keltenberg-Eponaweg", + "Kennedybrücke", + "Kerpelystraße", + "Kindergartenstraße", + "Kinderheimgasse", + "Kirchenplatz", + "Kirchweg", + "Klagenfurter Straße", + "Klamm", + "Kleinbaumgarten", + "Klingergasse", + "Koloniestraße", + "Konrad-Duden-Gasse", + "Krankenhausstraße", + "Kubinstraße", + "Köhldorfergasse", + "Lackenweg", + "Lange Mekotte", + "Leifling", + "Leopold Frank-Straße (Pellendorf)", + "Lerchengasse (Pirka)", + "Lichtensternsiedlung V", + "Lindenhofstraße", + "Lindenweg", + "Luegstraße", + "Maierhof", + "Malerweg", + "Mitterweg", + "Mittlere Hauptstraße", + "Moosbachgasse", + "Morettigasse", + "Musikpavillon Riezlern", + "Mühlboden", + "Mühle", + "Mühlenweg", + "Neustiftgasse", + "Niederegg", + "Niedergams", + "Nordwestbahnbrücke", + "Oberbödenalm", + "Obere Berggasse", + "Oedt", + "Am Färberberg", + "Ottogasse", + "Paul Peters-Gasse", + "Perspektivstraße", + "Poppichl", + "Privatweg", + "Prixgasse", + "Pyhra", + "Radetzkystraße", + "Raiden", + "Reichensteinstraße", + "Reitbauernstraße", + "Reiterweg", + "Reitschulgasse", + "Ringweg", + "Rupertistraße", + "Römerstraße", + "Römerweg", + "Sackgasse", + "Schaunbergerstraße", + "Schloßweg", + "Schulgasse (Langeck)", + "Schönholdsiedlung", + "Seeblick", + "Seestraße", + "Semriacherstraße", + "Simling", + "Sipbachzeller Straße", + "Sonnenweg", + "Spargelfeldgasse", + "Spiesmayrweg", + "Sportplatzstraße", + "St.Ulrich", + "Steilmannstraße", + "Steingrüneredt", + "Strassfeld", + "Straßerau", + "Stöpflweg", + "Stüra", + "Taferngasse", + "Tennweg", + "Thomas Koschat-Gasse", + "Tiroler Straße", + "Torrogasse", + "Uferstraße (Schwarzau am Steinfeld)", + "Unterdörfl", + "Unterer Sonnrainweg", + "Verwaltersiedlung", + "Waldhang", + "Wasen", + "Weidenstraße", + "Weiherweg", + "Wettsteingasse", + "Wiener Straße", + "Windisch", + "Zebragasse", + "Zellerstraße", + "Ziehrerstraße", + "Zulechnerweg", + "Zwergjoch", + "Ötzbruck" + ]; + +},{}],61:[function(require,module,exports){ + module["exports"] = [ + "+43-6##-#######", + "06##-########", + "+436#########", + "06##########" + ]; + +},{}],62:[function(require,module,exports){ + arguments[4][29][0].apply(exports,arguments) +},{"./formats":61,"/Users/a/dev/faker.js/lib/locales/de/cell_phone/index.js":29}],63:[function(require,module,exports){ + module.exports=require(30) +},{"./legal_form":64,"./name":65,"./suffix":66,"/Users/a/dev/faker.js/lib/locales/de/company/index.js":30}],64:[function(require,module,exports){ + module.exports=require(31) +},{"/Users/a/dev/faker.js/lib/locales/de/company/legal_form.js":31}],65:[function(require,module,exports){ + module.exports=require(32) +},{"/Users/a/dev/faker.js/lib/locales/de/company/name.js":32}],66:[function(require,module,exports){ + module.exports=require(31) +},{"/Users/a/dev/faker.js/lib/locales/de/company/legal_form.js":31}],67:[function(require,module,exports){ + var de_AT = {}; + module['exports'] = de_AT; + de_AT.title = "German (Austria)"; + de_AT.address = require("./address"); + de_AT.company = require("./company"); + de_AT.internet = require("./internet"); + de_AT.name = require("./name"); + de_AT.phone_number = require("./phone_number"); + de_AT.cell_phone = require("./cell_phone"); + +},{"./address":53,"./cell_phone":62,"./company":63,"./internet":70,"./name":72,"./phone_number":78}],68:[function(require,module,exports){ + module["exports"] = [ + "com", + "info", + "name", + "net", + "org", + "de", + "ch", + "at" + ]; + +},{}],69:[function(require,module,exports){ + module.exports=require(36) +},{"/Users/a/dev/faker.js/lib/locales/de/internet/free_email.js":36}],70:[function(require,module,exports){ + arguments[4][37][0].apply(exports,arguments) +},{"./domain_suffix":68,"./free_email":69,"/Users/a/dev/faker.js/lib/locales/de/internet/index.js":37}],71:[function(require,module,exports){ + module.exports=require(40) +},{"/Users/a/dev/faker.js/lib/locales/de/name/first_name.js":40}],72:[function(require,module,exports){ + arguments[4][41][0].apply(exports,arguments) +},{"./first_name":71,"./last_name":73,"./name":74,"./nobility_title_prefix":75,"./prefix":76,"/Users/a/dev/faker.js/lib/locales/de/name/index.js":41}],73:[function(require,module,exports){ + module.exports=require(42) +},{"/Users/a/dev/faker.js/lib/locales/de/name/last_name.js":42}],74:[function(require,module,exports){ + module.exports=require(43) +},{"/Users/a/dev/faker.js/lib/locales/de/name/name.js":43}],75:[function(require,module,exports){ + module.exports=require(44) +},{"/Users/a/dev/faker.js/lib/locales/de/name/nobility_title_prefix.js":44}],76:[function(require,module,exports){ + module["exports"] = [ + "Dr.", + "Prof. Dr." + ]; + +},{}],77:[function(require,module,exports){ + module["exports"] = [ + "01 #######", + "01#######", + "+43-1-#######", + "+431#######", + "0#### ####", + "0#########", + "+43-####-####", + "+43 ########" + ]; + +},{}],78:[function(require,module,exports){ + arguments[4][47][0].apply(exports,arguments) +},{"./formats":77,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],79:[function(require,module,exports){ + module["exports"] = [ + "CH", + "CH", + "CH", + "DE", + "AT", + "US", + "LI", + "US", + "HK", + "VN" + ]; + +},{}],80:[function(require,module,exports){ + module["exports"] = [ + "Schweiz" + ]; + +},{}],81:[function(require,module,exports){ + var address = {}; + module['exports'] = address; + address.country_code = require("./country_code"); + address.postcode = require("./postcode"); + address.default_country = require("./default_country"); + +},{"./country_code":79,"./default_country":80,"./postcode":82}],82:[function(require,module,exports){ + module["exports"] = [ + "1###", + "2###", + "3###", + "4###", + "5###", + "6###", + "7###", + "8###", + "9###" + ]; + +},{}],83:[function(require,module,exports){ + var company = {}; + module['exports'] = company; + company.suffix = require("./suffix"); + company.name = require("./name"); + +},{"./name":84,"./suffix":85}],84:[function(require,module,exports){ + module.exports=require(32) +},{"/Users/a/dev/faker.js/lib/locales/de/company/name.js":32}],85:[function(require,module,exports){ + module["exports"] = [ + "AG", + "GmbH", + "und Söhne", + "und Partner", + "& Co.", + "Gruppe", + "LLC", + "Inc." + ]; + +},{}],86:[function(require,module,exports){ + var de_CH = {}; + 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,"./name":90,"./phone_number":95}],87:[function(require,module,exports){ + module["exports"] = [ + "com", + "net", + "biz", + "ch", + "de", + "li", + "at", + "ch", + "ch" + ]; + +},{}],88:[function(require,module,exports){ + var internet = {}; + 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 ## ### ## ##", + "0900 ### ###", + "076 ### ## ##", + "+4178 ### ## ##", + "0041 79 ### ## ##" + ]; + +},{}],95:[function(require,module,exports){ + arguments[4][47][0].apply(exports,arguments) +},{"./formats":94,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],96:[function(require,module,exports){ + module["exports"] = [ + "#####", + "####", + "###" + ]; + +},{}],97:[function(require,module,exports){ + module.exports=require(15) +},{"/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" + ]; + +},{}],99:[function(require,module,exports){ + module["exports"] = [ + "town", + "ton", + "land", + "ville", + "berg", + "burgh", + "borough", + "bury", + "view", + "port", + "mouth", + "stad", + "furt", + "chester", + "mouth", + "fort", + "haven", + "side", + "shire" + ]; + +},{}],100:[function(require,module,exports){ + module["exports"] = [ + "Afghanistan", + "Albania", + "Algeria", + "American Samoa", + "Andorra", + "Angola", + "Anguilla", + "Antarctica (the territory South of 60 deg S)", + "Antigua and Barbuda", + "Argentina", + "Armenia", + "Aruba", + "Australia", + "Austria", + "Azerbaijan", + "Bahamas", + "Bahrain", + "Bangladesh", + "Barbados", + "Belarus", + "Belgium", + "Belize", + "Benin", + "Bermuda", + "Bhutan", + "Bolivia", + "Bosnia and Herzegovina", + "Botswana", + "Bouvet Island (Bouvetoya)", + "Brazil", + "British Indian Ocean Territory (Chagos Archipelago)", + "Brunei Darussalam", + "Bulgaria", + "Burkina Faso", + "Burundi", + "Cambodia", + "Cameroon", + "Canada", + "Cape Verde", + "Cayman Islands", + "Central African Republic", + "Chad", + "Chile", + "China", + "Christmas Island", + "Cocos (Keeling) Islands", + "Colombia", + "Comoros", + "Congo", + "Congo", + "Cook Islands", + "Costa Rica", + "Cote d'Ivoire", + "Croatia", + "Cuba", + "Cyprus", + "Czech Republic", + "Denmark", + "Djibouti", + "Dominica", + "Dominican Republic", + "Ecuador", + "Egypt", + "El Salvador", + "Equatorial Guinea", + "Eritrea", + "Estonia", + "Ethiopia", + "Faroe Islands", + "Falkland Islands (Malvinas)", + "Fiji", + "Finland", + "France", + "French Guiana", + "French Polynesia", + "French Southern Territories", + "Gabon", + "Gambia", + "Georgia", + "Germany", + "Ghana", + "Gibraltar", + "Greece", + "Greenland", + "Grenada", + "Guadeloupe", + "Guam", + "Guatemala", + "Guernsey", + "Guinea", + "Guinea-Bissau", + "Guyana", + "Haiti", + "Heard Island and McDonald Islands", + "Holy See (Vatican City State)", + "Honduras", + "Hong Kong", + "Hungary", + "Iceland", + "India", + "Indonesia", + "Iran", + "Iraq", + "Ireland", + "Isle of Man", + "Israel", + "Italy", + "Jamaica", + "Japan", + "Jersey", + "Jordan", + "Kazakhstan", + "Kenya", + "Kiribati", + "Democratic People's Republic of Korea", + "Republic of Korea", + "Kuwait", + "Kyrgyz Republic", + "Lao People's Democratic Republic", + "Latvia", + "Lebanon", + "Lesotho", + "Liberia", + "Libyan Arab Jamahiriya", + "Liechtenstein", + "Lithuania", + "Luxembourg", + "Macao", + "Macedonia", + "Madagascar", + "Malawi", + "Malaysia", + "Maldives", + "Mali", + "Malta", + "Marshall Islands", + "Martinique", + "Mauritania", + "Mauritius", + "Mayotte", + "Mexico", + "Micronesia", + "Moldova", + "Monaco", + "Mongolia", + "Montenegro", + "Montserrat", + "Morocco", + "Mozambique", + "Myanmar", + "Namibia", + "Nauru", + "Nepal", + "Netherlands Antilles", + "Netherlands", + "New Caledonia", + "New Zealand", + "Nicaragua", + "Niger", + "Nigeria", + "Niue", + "Norfolk Island", + "Northern Mariana Islands", + "Norway", + "Oman", + "Pakistan", + "Palau", + "Palestinian Territory", + "Panama", + "Papua New Guinea", + "Paraguay", + "Peru", + "Philippines", + "Pitcairn Islands", + "Poland", + "Portugal", + "Puerto Rico", + "Qatar", + "Reunion", + "Romania", + "Russian Federation", + "Rwanda", + "Saint Barthelemy", + "Saint Helena", + "Saint Kitts and Nevis", + "Saint Lucia", + "Saint Martin", + "Saint Pierre and Miquelon", + "Saint Vincent and the Grenadines", + "Samoa", + "San Marino", + "Sao Tome and Principe", + "Saudi Arabia", + "Senegal", + "Serbia", + "Seychelles", + "Sierra Leone", + "Singapore", + "Slovakia (Slovak Republic)", + "Slovenia", + "Solomon Islands", + "Somalia", + "South Africa", + "South Georgia and the South Sandwich Islands", + "Spain", + "Sri Lanka", + "Sudan", + "Suriname", + "Svalbard & Jan Mayen Islands", + "Swaziland", + "Sweden", + "Switzerland", + "Syrian Arab Republic", + "Taiwan", + "Tajikistan", + "Tanzania", + "Thailand", + "Timor-Leste", + "Togo", + "Tokelau", + "Tonga", + "Trinidad and Tobago", + "Tunisia", + "Turkey", + "Turkmenistan", + "Turks and Caicos Islands", + "Tuvalu", + "Uganda", + "Ukraine", + "United Arab Emirates", + "United Kingdom", + "United States of America", + "United States Minor Outlying Islands", + "Uruguay", + "Uzbekistan", + "Vanuatu", + "Venezuela", + "Vietnam", + "Virgin Islands, British", + "Virgin Islands, U.S.", + "Wallis and Futuna", + "Western Sahara", + "Yemen", + "Zambia", + "Zimbabwe" + ]; + +},{}],101:[function(require,module,exports){ + module["exports"] = [ + "AD", + "AE", + "AF", + "AG", + "AI", + "AL", + "AM", + "AO", + "AQ", + "AR", + "AS", + "AT", + "AU", + "AW", + "AX", + "AZ", + "BA", + "BB", + "BD", + "BE", + "BF", + "BG", + "BH", + "BI", + "BJ", + "BL", + "BM", + "BN", + "BO", + "BQ", + "BQ", + "BR", + "BS", + "BT", + "BV", + "BW", + "BY", + "BZ", + "CA", + "CC", + "CD", + "CF", + "CG", + "CH", + "CI", + "CK", + "CL", + "CM", + "CN", + "CO", + "CR", + "CU", + "CV", + "CW", + "CX", + "CY", + "CZ", + "DE", + "DJ", + "DK", + "DM", + "DO", + "DZ", + "EC", + "EE", + "EG", + "EH", + "ER", + "ES", + "ET", + "FI", + "FJ", + "FK", + "FM", + "FO", + "FR", + "GA", + "GB", + "GD", + "GE", + "GF", + "GG", + "GH", + "GI", + "GL", + "GM", + "GN", + "GP", + "GQ", + "GR", + "GS", + "GT", + "GU", + "GW", + "GY", + "HK", + "HM", + "HN", + "HR", + "HT", + "HU", + "ID", + "IE", + "IL", + "IM", + "IN", + "IO", + "IQ", + "IR", + "IS", + "IT", + "JE", + "JM", + "JO", + "JP", + "KE", + "KG", + "KH", + "KI", + "KM", + "KN", + "KP", + "KR", + "KW", + "KY", + "KZ", + "LA", + "LB", + "LC", + "LI", + "LK", + "LR", + "LS", + "LT", + "LU", + "LV", + "LY", + "MA", + "MC", + "MD", + "ME", + "MF", + "MG", + "MH", + "MK", + "ML", + "MM", + "MN", + "MO", + "MP", + "MQ", + "MR", + "MS", + "MT", + "MU", + "MV", + "MW", + "MX", + "MY", + "MZ", + "NA", + "NC", + "NE", + "NF", + "NG", + "NI", + "NL", + "NO", + "NP", + "NR", + "NU", + "NZ", + "OM", + "PA", + "PE", + "PF", + "PG", + "PH", + "PK", + "PL", + "PM", + "PN", + "PR", + "PS", + "PT", + "PW", + "PY", + "QA", + "RE", + "RO", + "RS", + "RU", + "RW", + "SA", + "SB", + "SC", + "SD", + "SE", + "SG", + "SH", + "SI", + "SJ", + "SK", + "SL", + "SM", + "SN", + "SO", + "SR", + "SS", + "ST", + "SV", + "SX", + "SY", + "SZ", + "TC", + "TD", + "TF", + "TG", + "TH", + "TJ", + "TK", + "TL", + "TM", + "TN", + "TO", + "TR", + "TT", + "TV", + "TW", + "TZ", + "UA", + "UG", + "UM", + "US", + "UY", + "UZ", + "VA", + "VC", + "VE", + "VG", + "VI", + "VN", + "VU", + "WF", + "WS", + "YE", + "YT", + "ZA", + "ZM", + "ZW" + ]; + +},{}],102:[function(require,module,exports){ + module["exports"] = [ + "Avon", + "Bedfordshire", + "Berkshire", + "Borders", + "Buckinghamshire", + "Cambridgeshire" + ]; + +},{}],103:[function(require,module,exports){ + module["exports"] = [ + "United States of America" + ]; + +},{}],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"); + address.country = require("./country"); + address.country_code = require("./country_code"); + address.building_number = require("./building_number"); + address.street_suffix = require("./street_suffix"); + address.secondary_address = require("./secondary_address"); + address.postcode = require("./postcode"); + address.postcode_by_state = require("./postcode_by_state"); + address.state = require("./state"); + address.state_abbr = require("./state_abbr"); + address.time_zone = require("./time_zone"); + address.city = require("./city"); + address.street_name = require("./street_name"); + address.street_address = require("./street_address"); + address.default_country = require("./default_country"); + +},{"./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"] = [ + "#####", + "#####-####" + ]; + +},{}],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 ###" + ]; + +},{}],108:[function(require,module,exports){ + module["exports"] = [ + "Alabama", + "Alaska", + "Arizona", + "Arkansas", + "California", + "Colorado", + "Connecticut", + "Delaware", + "Florida", + "Georgia", + "Hawaii", + "Idaho", + "Illinois", + "Indiana", + "Iowa", + "Kansas", + "Kentucky", + "Louisiana", + "Maine", + "Maryland", + "Massachusetts", + "Michigan", + "Minnesota", + "Mississippi", + "Missouri", + "Montana", + "Nebraska", + "Nevada", + "New Hampshire", + "New Jersey", + "New Mexico", + "New York", + "North Carolina", + "North Dakota", + "Ohio", + "Oklahoma", + "Oregon", + "Pennsylvania", + "Rhode Island", + "South Carolina", + "South Dakota", + "Tennessee", + "Texas", + "Utah", + "Vermont", + "Virginia", + "Washington", + "West Virginia", + "Wisconsin", + "Wyoming" + ]; + +},{}],109:[function(require,module,exports){ + module["exports"] = [ + "AL", + "AK", + "AZ", + "AR", + "CA", + "CO", + "CT", + "DE", + "FL", + "GA", + "HI", + "ID", + "IL", + "IN", + "IA", + "KS", + "KY", + "LA", + "ME", + "MD", + "MA", + "MI", + "MN", + "MS", + "MO", + "MT", + "NE", + "NV", + "NH", + "NJ", + "NM", + "NY", + "NC", + "ND", + "OH", + "OK", + "OR", + "PA", + "RI", + "SC", + "SD", + "TN", + "TX", + "UT", + "VT", + "VA", + "WA", + "WV", + "WI", + "WY" + ]; + +},{}],110:[function(require,module,exports){ + module["exports"] = [ + "#{building_number} #{street_name}" + ]; + +},{}],111:[function(require,module,exports){ + module["exports"] = [ + "#{Name.first_name} #{street_suffix}", + "#{Name.last_name} #{street_suffix}" + ]; + +},{}],112:[function(require,module,exports){ + module["exports"] = [ + "Alley", + "Avenue", + "Branch", + "Bridge", + "Brook", + "Brooks", + "Burg", + "Burgs", + "Bypass", + "Camp", + "Canyon", + "Cape", + "Causeway", + "Center", + "Centers", + "Circle", + "Circles", + "Cliff", + "Cliffs", + "Club", + "Common", + "Corner", + "Corners", + "Course", + "Court", + "Courts", + "Cove", + "Coves", + "Creek", + "Crescent", + "Crest", + "Crossing", + "Crossroad", + "Curve", + "Dale", + "Dam", + "Divide", + "Drive", + "Drive", + "Drives", + "Estate", + "Estates", + "Expressway", + "Extension", + "Extensions", + "Fall", + "Falls", + "Ferry", + "Field", + "Fields", + "Flat", + "Flats", + "Ford", + "Fords", + "Forest", + "Forge", + "Forges", + "Fork", + "Forks", + "Fort", + "Freeway", + "Garden", + "Gardens", + "Gateway", + "Glen", + "Glens", + "Green", + "Greens", + "Grove", + "Groves", + "Harbor", + "Harbors", + "Haven", + "Heights", + "Highway", + "Hill", + "Hills", + "Hollow", + "Inlet", + "Inlet", + "Island", + "Island", + "Islands", + "Islands", + "Isle", + "Isle", + "Junction", + "Junctions", + "Key", + "Keys", + "Knoll", + "Knolls", + "Lake", + "Lakes", + "Land", + "Landing", + "Lane", + "Light", + "Lights", + "Loaf", + "Lock", + "Locks", + "Locks", + "Lodge", + "Lodge", + "Loop", + "Mall", + "Manor", + "Manors", + "Meadow", + "Meadows", + "Mews", + "Mill", + "Mills", + "Mission", + "Mission", + "Motorway", + "Mount", + "Mountain", + "Mountain", + "Mountains", + "Mountains", + "Neck", + "Orchard", + "Oval", + "Overpass", + "Park", + "Parks", + "Parkway", + "Parkways", + "Pass", + "Passage", + "Path", + "Pike", + "Pine", + "Pines", + "Place", + "Plain", + "Plains", + "Plains", + "Plaza", + "Plaza", + "Point", + "Points", + "Port", + "Port", + "Ports", + "Ports", + "Prairie", + "Prairie", + "Radial", + "Ramp", + "Ranch", + "Rapid", + "Rapids", + "Rest", + "Ridge", + "Ridges", + "River", + "Road", + "Road", + "Roads", + "Roads", + "Route", + "Row", + "Rue", + "Run", + "Shoal", + "Shoals", + "Shore", + "Shores", + "Skyway", + "Spring", + "Springs", + "Springs", + "Spur", + "Spurs", + "Square", + "Square", + "Squares", + "Squares", + "Station", + "Station", + "Stravenue", + "Stravenue", + "Stream", + "Stream", + "Street", + "Street", + "Streets", + "Summit", + "Summit", + "Terrace", + "Throughway", + "Trace", + "Track", + "Trafficway", + "Trail", + "Trail", + "Tunnel", + "Tunnel", + "Turnpike", + "Turnpike", + "Underpass", + "Union", + "Unions", + "Valley", + "Valleys", + "Via", + "Viaduct", + "View", + "Views", + "Village", + "Village", + "Villages", + "Ville", + "Vista", + "Vista", + "Walk", + "Walks", + "Wall", + "Way", + "Ways", + "Well", + "Wells" + ]; + +},{}],113:[function(require,module,exports){ + module["exports"] = [ + "Pacific/Midway", + "Pacific/Pago_Pago", + "Pacific/Honolulu", + "America/Juneau", + "America/Los_Angeles", + "America/Tijuana", + "America/Denver", + "America/Phoenix", + "America/Chihuahua", + "America/Mazatlan", + "America/Chicago", + "America/Regina", + "America/Mexico_City", + "America/Mexico_City", + "America/Monterrey", + "America/Guatemala", + "America/New_York", + "America/Indiana/Indianapolis", + "America/Bogota", + "America/Lima", + "America/Lima", + "America/Halifax", + "America/Caracas", + "America/La_Paz", + "America/Santiago", + "America/St_Johns", + "America/Sao_Paulo", + "America/Argentina/Buenos_Aires", + "America/Guyana", + "America/Godthab", + "Atlantic/South_Georgia", + "Atlantic/Azores", + "Atlantic/Cape_Verde", + "Europe/Dublin", + "Europe/London", + "Europe/Lisbon", + "Europe/London", + "Africa/Casablanca", + "Africa/Monrovia", + "Etc/UTC", + "Europe/Belgrade", + "Europe/Bratislava", + "Europe/Budapest", + "Europe/Ljubljana", + "Europe/Prague", + "Europe/Sarajevo", + "Europe/Skopje", + "Europe/Warsaw", + "Europe/Zagreb", + "Europe/Brussels", + "Europe/Copenhagen", + "Europe/Madrid", + "Europe/Paris", + "Europe/Amsterdam", + "Europe/Berlin", + "Europe/Berlin", + "Europe/Rome", + "Europe/Stockholm", + "Europe/Vienna", + "Africa/Algiers", + "Europe/Bucharest", + "Africa/Cairo", + "Europe/Helsinki", + "Europe/Kiev", + "Europe/Riga", + "Europe/Sofia", + "Europe/Tallinn", + "Europe/Vilnius", + "Europe/Athens", + "Europe/Istanbul", + "Europe/Minsk", + "Asia/Jerusalem", + "Africa/Harare", + "Africa/Johannesburg", + "Europe/Moscow", + "Europe/Moscow", + "Europe/Moscow", + "Asia/Kuwait", + "Asia/Riyadh", + "Africa/Nairobi", + "Asia/Baghdad", + "Asia/Tehran", + "Asia/Muscat", + "Asia/Muscat", + "Asia/Baku", + "Asia/Tbilisi", + "Asia/Yerevan", + "Asia/Kabul", + "Asia/Yekaterinburg", + "Asia/Karachi", + "Asia/Karachi", + "Asia/Tashkent", + "Asia/Kolkata", + "Asia/Kolkata", + "Asia/Kolkata", + "Asia/Kolkata", + "Asia/Kathmandu", + "Asia/Dhaka", + "Asia/Dhaka", + "Asia/Colombo", + "Asia/Almaty", + "Asia/Novosibirsk", + "Asia/Rangoon", + "Asia/Bangkok", + "Asia/Bangkok", + "Asia/Jakarta", + "Asia/Krasnoyarsk", + "Asia/Shanghai", + "Asia/Chongqing", + "Asia/Hong_Kong", + "Asia/Urumqi", + "Asia/Kuala_Lumpur", + "Asia/Singapore", + "Asia/Taipei", + "Australia/Perth", + "Asia/Irkutsk", + "Asia/Ulaanbaatar", + "Asia/Seoul", + "Asia/Tokyo", + "Asia/Tokyo", + "Asia/Tokyo", + "Asia/Yakutsk", + "Australia/Darwin", + "Australia/Adelaide", + "Australia/Melbourne", + "Australia/Melbourne", + "Australia/Sydney", + "Australia/Brisbane", + "Australia/Hobart", + "Asia/Vladivostok", + "Pacific/Guam", + "Pacific/Port_Moresby", + "Asia/Magadan", + "Asia/Magadan", + "Pacific/Noumea", + "Pacific/Fiji", + "Asia/Kamchatka", + "Pacific/Majuro", + "Pacific/Auckland", + "Pacific/Auckland", + "Pacific/Tongatapu", + "Pacific/Fakaofo", + "Pacific/Apia" + ]; + +},{}],114:[function(require,module,exports){ + module["exports"] = [ + "#{Name.name}", + "#{Company.name}" + ]; + +},{}],115:[function(require,module,exports){ + var app = {}; + module['exports'] = app; + app.name = require("./name"); + app.version = require("./version"); + app.author = require("./author"); + +},{"./author":114,"./name":116,"./version":117}],116:[function(require,module,exports){ + module["exports"] = [ + "Redhold", + "Treeflex", + "Trippledex", + "Kanlam", + "Bigtax", + "Daltfresh", + "Toughjoyfax", + "Mat Lam Tam", + "Otcom", + "Tres-Zap", + "Y-Solowarm", + "Tresom", + "Voltsillam", + "Biodex", + "Greenlam", + "Viva", + "Matsoft", + "Temp", + "Zoolab", + "Subin", + "Rank", + "Job", + "Stringtough", + "Tin", + "It", + "Home Ing", + "Zamit", + "Sonsing", + "Konklab", + "Alpha", + "Latlux", + "Voyatouch", + "Alphazap", + "Holdlamis", + "Zaam-Dox", + "Sub-Ex", + "Quo Lux", + "Bamity", + "Ventosanzap", + "Lotstring", + "Hatity", + "Tempsoft", + "Overhold", + "Fixflex", + "Konklux", + "Zontrax", + "Tampflex", + "Span", + "Namfix", + "Transcof", + "Stim", + "Fix San", + "Sonair", + "Stronghold", + "Fintone", + "Y-find", + "Opela", + "Lotlux", + "Ronstring", + "Zathin", + "Duobam", + "Keylex" + ]; + +},{}],117:[function(require,module,exports){ + module["exports"] = [ + "0.#.#", + "0.##", + "#.##", + "#.#", + "#.#.#" + ]; + +},{}],118:[function(require,module,exports){ + module["exports"] = [ + "2011-10-12", + "2012-11-12", + "2015-11-11", + "2013-9-12" + ]; + +},{}],119:[function(require,module,exports){ + module["exports"] = [ + "1234-2121-1221-1211", + "1212-1221-1121-1234", + "1211-1221-1234-2201", + "1228-1221-1221-1431" + ]; + +},{}],120:[function(require,module,exports){ + module["exports"] = [ + "visa", + "mastercard", + "americanexpress", + "discover" + ]; + +},{}],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":118,"./credit_card_numbers":119,"./credit_card_types":120}],122:[function(require,module,exports){ + module["exports"] = [ + "###-###-####", + "(###) ###-####", + "1-###-###-####", + "###.###.####" + ]; + +},{}],123:[function(require,module,exports){ + arguments[4][29][0].apply(exports,arguments) +},{"./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", + "purple", + "mint green", + "teal", + "white", + "black", + "orange", + "pink", + "grey", + "maroon", + "violet", + "turquoise", + "tan", + "sky blue", + "salmon", + "plum", + "orchid", + "olive", + "magenta", + "lime", + "ivory", + "indigo", + "gold", + "fuchsia", + "cyan", + "azure", + "lavender", + "silver" + ]; + +},{}],125:[function(require,module,exports){ + module["exports"] = [ + "Books", + "Movies", + "Music", + "Games", + "Electronics", + "Computers", + "Home", + "Garden", + "Tools", + "Grocery", + "Health", + "Beauty", + "Toys", + "Kids", + "Baby", + "Clothing", + "Shoes", + "Jewelery", + "Sports", + "Outdoors", + "Automotive", + "Industrial" + ]; + +},{}],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":124,"./department":125,"./product_name":127}],127:[function(require,module,exports){ + module["exports"] = { + "adjective": [ + "Small", + "Ergonomic", + "Rustic", + "Intelligent", + "Gorgeous", + "Incredible", + "Fantastic", + "Practical", + "Sleek", + "Awesome", + "Generic", + "Handcrafted", + "Handmade", + "Licensed", + "Refined", + "Unbranded", + "Tasty" + ], + "material": [ + "Steel", + "Wooden", + "Concrete", + "Plastic", + "Cotton", + "Granite", + "Rubber", + "Metal", + "Soft", + "Fresh", + "Frozen" + ], + "product": [ + "Chair", + "Car", + "Computer", + "Keyboard", + "Mouse", + "Bike", + "Ball", + "Gloves", + "Pants", + "Shirt", + "Table", + "Shoes", + "Hat", + "Towels", + "Soap", + "Tuna", + "Chicken", + "Fish", + "Cheese", + "Bacon", + "Pizza", + "Salad", + "Sausages", + "Chips" + ] + }; + +},{}],128:[function(require,module,exports){ + module["exports"] = [ + "Adaptive", + "Advanced", + "Ameliorated", + "Assimilated", + "Automated", + "Balanced", + "Business-focused", + "Centralized", + "Cloned", + "Compatible", + "Configurable", + "Cross-group", + "Cross-platform", + "Customer-focused", + "Customizable", + "Decentralized", + "De-engineered", + "Devolved", + "Digitized", + "Distributed", + "Diverse", + "Down-sized", + "Enhanced", + "Enterprise-wide", + "Ergonomic", + "Exclusive", + "Expanded", + "Extended", + "Face to face", + "Focused", + "Front-line", + "Fully-configurable", + "Function-based", + "Fundamental", + "Future-proofed", + "Grass-roots", + "Horizontal", + "Implemented", + "Innovative", + "Integrated", + "Intuitive", + "Inverse", + "Managed", + "Mandatory", + "Monitored", + "Multi-channelled", + "Multi-lateral", + "Multi-layered", + "Multi-tiered", + "Networked", + "Object-based", + "Open-architected", + "Open-source", + "Operative", + "Optimized", + "Optional", + "Organic", + "Organized", + "Persevering", + "Persistent", + "Phased", + "Polarised", + "Pre-emptive", + "Proactive", + "Profit-focused", + "Profound", + "Programmable", + "Progressive", + "Public-key", + "Quality-focused", + "Reactive", + "Realigned", + "Re-contextualized", + "Re-engineered", + "Reduced", + "Reverse-engineered", + "Right-sized", + "Robust", + "Seamless", + "Secured", + "Self-enabling", + "Sharable", + "Stand-alone", + "Streamlined", + "Switchable", + "Synchronised", + "Synergistic", + "Synergized", + "Team-oriented", + "Total", + "Triple-buffered", + "Universal", + "Up-sized", + "Upgradable", + "User-centric", + "User-friendly", + "Versatile", + "Virtual", + "Visionary", + "Vision-oriented" + ]; + +},{}],129:[function(require,module,exports){ + module["exports"] = [ + "clicks-and-mortar", + "value-added", + "vertical", + "proactive", + "robust", + "revolutionary", + "scalable", + "leading-edge", + "innovative", + "intuitive", + "strategic", + "e-business", + "mission-critical", + "sticky", + "one-to-one", + "24/7", + "end-to-end", + "global", + "B2B", + "B2C", + "granular", + "frictionless", + "virtual", + "viral", + "dynamic", + "24/365", + "best-of-breed", + "killer", + "magnetic", + "bleeding-edge", + "web-enabled", + "interactive", + "dot-com", + "sexy", + "back-end", + "real-time", + "efficient", + "front-end", + "distributed", + "seamless", + "extensible", + "turn-key", + "world-class", + "open-source", + "cross-platform", + "cross-media", + "synergistic", + "bricks-and-clicks", + "out-of-the-box", + "enterprise", + "integrated", + "impactful", + "wireless", + "transparent", + "next-generation", + "cutting-edge", + "user-centric", + "visionary", + "customized", + "ubiquitous", + "plug-and-play", + "collaborative", + "compelling", + "holistic", + "rich" + ]; + +},{}],130:[function(require,module,exports){ + module["exports"] = [ + "synergies", + "web-readiness", + "paradigms", + "markets", + "partnerships", + "infrastructures", + "platforms", + "initiatives", + "channels", + "eyeballs", + "communities", + "ROI", + "solutions", + "e-tailers", + "e-services", + "action-items", + "portals", + "niches", + "technologies", + "content", + "vortals", + "supply-chains", + "convergence", + "relationships", + "architectures", + "interfaces", + "e-markets", + "e-commerce", + "systems", + "bandwidth", + "infomediaries", + "models", + "mindshare", + "deliverables", + "users", + "schemas", + "networks", + "applications", + "metrics", + "e-business", + "functionalities", + "experiences", + "web services", + "methodologies" + ]; + +},{}],131:[function(require,module,exports){ + module["exports"] = [ + "implement", + "utilize", + "integrate", + "streamline", + "optimize", + "evolve", + "transform", + "embrace", + "enable", + "orchestrate", + "leverage", + "reinvent", + "aggregate", + "architect", + "enhance", + "incentivize", + "morph", + "empower", + "envisioneer", + "monetize", + "harness", + "facilitate", + "seize", + "disintermediate", + "synergize", + "strategize", + "deploy", + "brand", + "grow", + "target", + "syndicate", + "synthesize", + "deliver", + "mesh", + "incubate", + "engage", + "maximize", + "benchmark", + "expedite", + "reintermediate", + "whiteboard", + "visualize", + "repurpose", + "innovate", + "scale", + "unleash", + "drive", + "extend", + "engineer", + "revolutionize", + "generate", + "exploit", + "transition", + "e-enable", + "iterate", + "cultivate", + "matrix", + "productize", + "redefine", + "recontextualize" + ]; + +},{}],132:[function(require,module,exports){ + module["exports"] = [ + "24 hour", + "24/7", + "3rd generation", + "4th generation", + "5th generation", + "6th generation", + "actuating", + "analyzing", + "asymmetric", + "asynchronous", + "attitude-oriented", + "background", + "bandwidth-monitored", + "bi-directional", + "bifurcated", + "bottom-line", + "clear-thinking", + "client-driven", + "client-server", + "coherent", + "cohesive", + "composite", + "context-sensitive", + "contextually-based", + "content-based", + "dedicated", + "demand-driven", + "didactic", + "directional", + "discrete", + "disintermediate", + "dynamic", + "eco-centric", + "empowering", + "encompassing", + "even-keeled", + "executive", + "explicit", + "exuding", + "fault-tolerant", + "foreground", + "fresh-thinking", + "full-range", + "global", + "grid-enabled", + "heuristic", + "high-level", + "holistic", + "homogeneous", + "human-resource", + "hybrid", + "impactful", + "incremental", + "intangible", + "interactive", + "intermediate", + "leading edge", + "local", + "logistical", + "maximized", + "methodical", + "mission-critical", + "mobile", + "modular", + "motivating", + "multimedia", + "multi-state", + "multi-tasking", + "national", + "needs-based", + "neutral", + "next generation", + "non-volatile", + "object-oriented", + "optimal", + "optimizing", + "radical", + "real-time", + "reciprocal", + "regional", + "responsive", + "scalable", + "secondary", + "solution-oriented", + "stable", + "static", + "systematic", + "systemic", + "system-worthy", + "tangible", + "tertiary", + "transitional", + "uniform", + "upward-trending", + "user-facing", + "value-added", + "web-enabled", + "well-modulated", + "zero administration", + "zero defect", + "zero tolerance" + ]; + +},{}],133:[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_adjective = require("./bs_adjective"); + company.bs_noun = require("./bs_noun"); + company.name = require("./name"); + +},{"./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}" + ]; + +},{}],135:[function(require,module,exports){ + module["exports"] = [ + "ability", + "access", + "adapter", + "algorithm", + "alliance", + "analyzer", + "application", + "approach", + "architecture", + "archive", + "artificial intelligence", + "array", + "attitude", + "benchmark", + "budgetary management", + "capability", + "capacity", + "challenge", + "circuit", + "collaboration", + "complexity", + "concept", + "conglomeration", + "contingency", + "core", + "customer loyalty", + "database", + "data-warehouse", + "definition", + "emulation", + "encoding", + "encryption", + "extranet", + "firmware", + "flexibility", + "focus group", + "forecast", + "frame", + "framework", + "function", + "functionalities", + "Graphic Interface", + "groupware", + "Graphical User Interface", + "hardware", + "help-desk", + "hierarchy", + "hub", + "implementation", + "info-mediaries", + "infrastructure", + "initiative", + "installation", + "instruction set", + "interface", + "internet solution", + "intranet", + "knowledge user", + "knowledge base", + "local area network", + "leverage", + "matrices", + "matrix", + "methodology", + "middleware", + "migration", + "model", + "moderator", + "monitoring", + "moratorium", + "neural-net", + "open architecture", + "open system", + "orchestration", + "paradigm", + "parallelism", + "policy", + "portal", + "pricing structure", + "process improvement", + "product", + "productivity", + "project", + "projection", + "protocol", + "secured line", + "service-desk", + "software", + "solution", + "standardization", + "strategy", + "structure", + "success", + "superstructure", + "support", + "synergy", + "system engine", + "task-force", + "throughput", + "time-frame", + "toolset", + "utilisation", + "website", + "workforce" + ]; + +},{}],136:[function(require,module,exports){ + module["exports"] = [ + "Inc", + "and Sons", + "LLC", + "Group" + ]; + +},{}],137:[function(require,module,exports){ + module["exports"] = [ + "/34##-######-####L/", + "/37##-######-####L/" + ]; + +},{}],138:[function(require,module,exports){ + module["exports"] = [ + "/30[0-5]#-######-###L/", + "/368#-######-###L/" + ]; + +},{}],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/" + ]; + +},{}],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"); + credit_card.american_express = require("./american_express"); + credit_card.diners_club = require("./diners_club"); + credit_card.jcb = require("./jcb"); + credit_card.switch = require("./switch"); + credit_card.solo = require("./solo"); + credit_card.maestro = require("./maestro"); + credit_card.laser = require("./laser"); + +},{"./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/" + ]; + +},{}],142:[function(require,module,exports){ + module["exports"] = [ + "/6304###########L/", + "/6706###########L/", + "/6771###########L/", + "/6709###########L/", + "/6304#########{5,6}L/", + "/6706#########{5,6}L/", + "/6771#########{5,6}L/", + "/6709#########{5,6}L/" + ]; + +},{}],143:[function(require,module,exports){ + module["exports"] = [ + "/50#{9,16}L/", + "/5[6-8]#{9,16}L/", + "/56##{9,16}L/" + ]; + +},{}],144:[function(require,module,exports){ + module["exports"] = [ + "/5[1-5]##-####-####-###L/", + "/6771-89##-####-###L/" + ]; + +},{}],145:[function(require,module,exports){ + module["exports"] = [ + "/6767-####-####-###L/", + "/6767-####-####-####-#L/", + "/6767-####-####-####-##L/" + ]; + +},{}],146:[function(require,module,exports){ + module["exports"] = [ + "/6759-####-####-###L/", + "/6759-####-####-####-#L/", + "/6759-####-####-####-##L/" + ]; + +},{}],147:[function(require,module,exports){ + module["exports"] = [ + "/4###########L/", + "/4###-####-####-###L/" + ]; + +},{}],148:[function(require,module,exports){ + var date = {}; + module["exports"] = date; + date.month = require("./month"); + date.weekday = require("./weekday"); + +},{"./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", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], + // Property "wide_context" is optional, if not set then "wide" will be used instead + // It is used to specify a word in context, which may differ from a stand-alone word + wide_context: [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], + abbr: [ + "Jan", + "Feb", + "Mar", + "Apr", + "May", + "Jun", + "Jul", + "Aug", + "Sep", + "Oct", + "Nov", + "Dec" + ], + // Property "abbr_context" is optional, if not set then "abbr" will be used instead + // It is used to specify a word in context, which may differ from a stand-alone word + abbr_context: [ + "Jan", + "Feb", + "Mar", + "Apr", + "May", + "Jun", + "Jul", + "Aug", + "Sep", + "Oct", + "Nov", + "Dec" + ] + }; + +},{}],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", + "Tuesday", + "Wednesday", + "Thursday", + "Friday", + "Saturday" + ], + // Property "wide_context" is optional, if not set then "wide" will be used instead + // It is used to specify a word in context, which may differ from a stand-alone word + wide_context: [ + "Sunday", + "Monday", + "Tuesday", + "Wednesday", + "Thursday", + "Friday", + "Saturday" + ], + abbr: [ + "Sun", + "Mon", + "Tue", + "Wed", + "Thu", + "Fri", + "Sat" + ], + // Property "abbr_context" is optional, if not set then "abbr" will be used instead + // It is used to specify a word in context, which may differ from a stand-alone word + abbr_context: [ + "Sun", + "Mon", + "Tue", + "Wed", + "Thu", + "Fri", + "Sat" + ] + }; + +},{}],151:[function(require,module,exports){ + module["exports"] = [ + "Checking", + "Savings", + "Money Market", + "Investment", + "Home Loan", + "Credit Card", + "Auto Loan", + "Personal Loan" + ]; + +},{}],152:[function(require,module,exports){ + module["exports"] = { + "UAE Dirham": { + "code": "AED", + "symbol": "" + }, + "Afghani": { + "code": "AFN", + "symbol": "؋" + }, + "Lek": { + "code": "ALL", + "symbol": "Lek" + }, + "Armenian Dram": { + "code": "AMD", + "symbol": "" + }, + "Netherlands Antillian Guilder": { + "code": "ANG", + "symbol": "ƒ" + }, + "Kwanza": { + "code": "AOA", + "symbol": "" + }, + "Argentine Peso": { + "code": "ARS", + "symbol": "$" + }, + "Australian Dollar": { + "code": "AUD", + "symbol": "$" + }, + "Aruban Guilder": { + "code": "AWG", + "symbol": "ƒ" + }, + "Azerbaijanian Manat": { + "code": "AZN", + "symbol": "ман" + }, + "Convertible Marks": { + "code": "BAM", + "symbol": "KM" + }, + "Barbados Dollar": { + "code": "BBD", + "symbol": "$" + }, + "Taka": { + "code": "BDT", + "symbol": "" + }, + "Bulgarian Lev": { + "code": "BGN", + "symbol": "лв" + }, + "Bahraini Dinar": { + "code": "BHD", + "symbol": "" + }, + "Burundi Franc": { + "code": "BIF", + "symbol": "" + }, + "Bermudian Dollar (customarily known as Bermuda Dollar)": { + "code": "BMD", + "symbol": "$" + }, + "Brunei Dollar": { + "code": "BND", + "symbol": "$" + }, + "Boliviano Mvdol": { + "code": "BOB BOV", + "symbol": "$b" + }, + "Brazilian Real": { + "code": "BRL", + "symbol": "R$" + }, + "Bahamian Dollar": { + "code": "BSD", + "symbol": "$" + }, + "Pula": { + "code": "BWP", + "symbol": "P" + }, + "Belarussian Ruble": { + "code": "BYR", + "symbol": "p." + }, + "Belize Dollar": { + "code": "BZD", + "symbol": "BZ$" + }, + "Canadian Dollar": { + "code": "CAD", + "symbol": "$" + }, + "Congolese Franc": { + "code": "CDF", + "symbol": "" + }, + "Swiss Franc": { + "code": "CHF", + "symbol": "CHF" + }, + "Chilean Peso Unidades de fomento": { + "code": "CLP CLF", + "symbol": "$" + }, + "Yuan Renminbi": { + "code": "CNY", + "symbol": "¥" + }, + "Colombian Peso Unidad de Valor Real": { + "code": "COP COU", + "symbol": "$" + }, + "Costa Rican Colon": { + "code": "CRC", + "symbol": "₡" + }, + "Cuban Peso Peso Convertible": { + "code": "CUP CUC", + "symbol": "₱" + }, + "Cape Verde Escudo": { + "code": "CVE", + "symbol": "" + }, + "Czech Koruna": { + "code": "CZK", + "symbol": "Kč" + }, + "Djibouti Franc": { + "code": "DJF", + "symbol": "" + }, + "Danish Krone": { + "code": "DKK", + "symbol": "kr" + }, + "Dominican Peso": { + "code": "DOP", + "symbol": "RD$" + }, + "Algerian Dinar": { + "code": "DZD", + "symbol": "" + }, + "Kroon": { + "code": "EEK", + "symbol": "" + }, + "Egyptian Pound": { + "code": "EGP", + "symbol": "£" + }, + "Nakfa": { + "code": "ERN", + "symbol": "" + }, + "Ethiopian Birr": { + "code": "ETB", + "symbol": "" + }, + "Euro": { + "code": "EUR", + "symbol": "€" + }, + "Fiji Dollar": { + "code": "FJD", + "symbol": "$" + }, + "Falkland Islands Pound": { + "code": "FKP", + "symbol": "£" + }, + "Pound Sterling": { + "code": "GBP", + "symbol": "£" + }, + "Lari": { + "code": "GEL", + "symbol": "" + }, + "Cedi": { + "code": "GHS", + "symbol": "" + }, + "Gibraltar Pound": { + "code": "GIP", + "symbol": "£" + }, + "Dalasi": { + "code": "GMD", + "symbol": "" + }, + "Guinea Franc": { + "code": "GNF", + "symbol": "" + }, + "Quetzal": { + "code": "GTQ", + "symbol": "Q" + }, + "Guyana Dollar": { + "code": "GYD", + "symbol": "$" + }, + "Hong Kong Dollar": { + "code": "HKD", + "symbol": "$" + }, + "Lempira": { + "code": "HNL", + "symbol": "L" + }, + "Croatian Kuna": { + "code": "HRK", + "symbol": "kn" + }, + "Gourde US Dollar": { + "code": "HTG USD", + "symbol": "" + }, + "Forint": { + "code": "HUF", + "symbol": "Ft" + }, + "Rupiah": { + "code": "IDR", + "symbol": "Rp" + }, + "New Israeli Sheqel": { + "code": "ILS", + "symbol": "₪" + }, + "Indian Rupee": { + "code": "INR", + "symbol": "" + }, + "Indian Rupee Ngultrum": { + "code": "INR BTN", + "symbol": "" + }, + "Iraqi Dinar": { + "code": "IQD", + "symbol": "" + }, + "Iranian Rial": { + "code": "IRR", + "symbol": "﷼" + }, + "Iceland Krona": { + "code": "ISK", + "symbol": "kr" + }, + "Jamaican Dollar": { + "code": "JMD", + "symbol": "J$" + }, + "Jordanian Dinar": { + "code": "JOD", + "symbol": "" + }, + "Yen": { + "code": "JPY", + "symbol": "¥" + }, + "Kenyan Shilling": { + "code": "KES", + "symbol": "" + }, + "Som": { + "code": "KGS", + "symbol": "лв" + }, + "Riel": { + "code": "KHR", + "symbol": "៛" + }, + "Comoro Franc": { + "code": "KMF", + "symbol": "" + }, + "North Korean Won": { + "code": "KPW", + "symbol": "₩" + }, + "Won": { + "code": "KRW", + "symbol": "₩" + }, + "Kuwaiti Dinar": { + "code": "KWD", + "symbol": "" + }, + "Cayman Islands Dollar": { + "code": "KYD", + "symbol": "$" + }, + "Tenge": { + "code": "KZT", + "symbol": "лв" + }, + "Kip": { + "code": "LAK", + "symbol": "₭" + }, + "Lebanese Pound": { + "code": "LBP", + "symbol": "£" + }, + "Sri Lanka Rupee": { + "code": "LKR", + "symbol": "₨" + }, + "Liberian Dollar": { + "code": "LRD", + "symbol": "$" + }, + "Lithuanian Litas": { + "code": "LTL", + "symbol": "Lt" + }, + "Latvian Lats": { + "code": "LVL", + "symbol": "Ls" + }, + "Libyan Dinar": { + "code": "LYD", + "symbol": "" + }, + "Moroccan Dirham": { + "code": "MAD", + "symbol": "" + }, + "Moldovan Leu": { + "code": "MDL", + "symbol": "" + }, + "Malagasy Ariary": { + "code": "MGA", + "symbol": "" + }, + "Denar": { + "code": "MKD", + "symbol": "ден" + }, + "Kyat": { + "code": "MMK", + "symbol": "" + }, + "Tugrik": { + "code": "MNT", + "symbol": "₮" + }, + "Pataca": { + "code": "MOP", + "symbol": "" + }, + "Ouguiya": { + "code": "MRO", + "symbol": "" + }, + "Mauritius Rupee": { + "code": "MUR", + "symbol": "₨" + }, + "Rufiyaa": { + "code": "MVR", + "symbol": "" + }, + "Kwacha": { + "code": "MWK", + "symbol": "" + }, + "Mexican Peso Mexican Unidad de Inversion (UDI)": { + "code": "MXN MXV", + "symbol": "$" + }, + "Malaysian Ringgit": { + "code": "MYR", + "symbol": "RM" + }, + "Metical": { + "code": "MZN", + "symbol": "MT" + }, + "Naira": { + "code": "NGN", + "symbol": "₦" + }, + "Cordoba Oro": { + "code": "NIO", + "symbol": "C$" + }, + "Norwegian Krone": { + "code": "NOK", + "symbol": "kr" + }, + "Nepalese Rupee": { + "code": "NPR", + "symbol": "₨" + }, + "New Zealand Dollar": { + "code": "NZD", + "symbol": "$" + }, + "Rial Omani": { + "code": "OMR", + "symbol": "﷼" + }, + "Balboa US Dollar": { + "code": "PAB USD", + "symbol": "B/." + }, + "Nuevo Sol": { + "code": "PEN", + "symbol": "S/." + }, + "Kina": { + "code": "PGK", + "symbol": "" + }, + "Philippine Peso": { + "code": "PHP", + "symbol": "Php" + }, + "Pakistan Rupee": { + "code": "PKR", + "symbol": "₨" + }, + "Zloty": { + "code": "PLN", + "symbol": "zł" + }, + "Guarani": { + "code": "PYG", + "symbol": "Gs" + }, + "Qatari Rial": { + "code": "QAR", + "symbol": "﷼" + }, + "New Leu": { + "code": "RON", + "symbol": "lei" + }, + "Serbian Dinar": { + "code": "RSD", + "symbol": "Дин." + }, + "Russian Ruble": { + "code": "RUB", + "symbol": "руб" + }, + "Rwanda Franc": { + "code": "RWF", + "symbol": "" + }, + "Saudi Riyal": { + "code": "SAR", + "symbol": "﷼" + }, + "Solomon Islands Dollar": { + "code": "SBD", + "symbol": "$" + }, + "Seychelles Rupee": { + "code": "SCR", + "symbol": "₨" + }, + "Sudanese Pound": { + "code": "SDG", + "symbol": "" + }, + "Swedish Krona": { + "code": "SEK", + "symbol": "kr" + }, + "Singapore Dollar": { + "code": "SGD", + "symbol": "$" + }, + "Saint Helena Pound": { + "code": "SHP", + "symbol": "£" + }, + "Leone": { + "code": "SLL", + "symbol": "" + }, + "Somali Shilling": { + "code": "SOS", + "symbol": "S" + }, + "Surinam Dollar": { + "code": "SRD", + "symbol": "$" + }, + "Dobra": { + "code": "STD", + "symbol": "" + }, + "El Salvador Colon US Dollar": { + "code": "SVC USD", + "symbol": "$" + }, + "Syrian Pound": { + "code": "SYP", + "symbol": "£" + }, + "Lilangeni": { + "code": "SZL", + "symbol": "" + }, + "Baht": { + "code": "THB", + "symbol": "฿" + }, + "Somoni": { + "code": "TJS", + "symbol": "" + }, + "Manat": { + "code": "TMT", + "symbol": "" + }, + "Tunisian Dinar": { + "code": "TND", + "symbol": "" + }, + "Pa'anga": { + "code": "TOP", + "symbol": "" + }, + "Turkish Lira": { + "code": "TRY", + "symbol": "TL" + }, + "Trinidad and Tobago Dollar": { + "code": "TTD", + "symbol": "TT$" + }, + "New Taiwan Dollar": { + "code": "TWD", + "symbol": "NT$" + }, + "Tanzanian Shilling": { + "code": "TZS", + "symbol": "" + }, + "Hryvnia": { + "code": "UAH", + "symbol": "₴" + }, + "Uganda Shilling": { + "code": "UGX", + "symbol": "" + }, + "US Dollar": { + "code": "USD", + "symbol": "$" + }, + "Peso Uruguayo Uruguay Peso en Unidades Indexadas": { + "code": "UYU UYI", + "symbol": "$U" + }, + "Uzbekistan Sum": { + "code": "UZS", + "symbol": "лв" + }, + "Bolivar Fuerte": { + "code": "VEF", + "symbol": "Bs" + }, + "Dong": { + "code": "VND", + "symbol": "₫" + }, + "Vatu": { + "code": "VUV", + "symbol": "" + }, + "Tala": { + "code": "WST", + "symbol": "" + }, + "CFA Franc BEAC": { + "code": "XAF", + "symbol": "" + }, + "Silver": { + "code": "XAG", + "symbol": "" + }, + "Gold": { + "code": "XAU", + "symbol": "" + }, + "Bond Markets Units European Composite Unit (EURCO)": { + "code": "XBA", + "symbol": "" + }, + "European Monetary Unit (E.M.U.-6)": { + "code": "XBB", + "symbol": "" + }, + "European Unit of Account 9(E.U.A.-9)": { + "code": "XBC", + "symbol": "" + }, + "European Unit of Account 17(E.U.A.-17)": { + "code": "XBD", + "symbol": "" + }, + "East Caribbean Dollar": { + "code": "XCD", + "symbol": "$" + }, + "SDR": { + "code": "XDR", + "symbol": "" + }, + "UIC-Franc": { + "code": "XFU", + "symbol": "" + }, + "CFA Franc BCEAO": { + "code": "XOF", + "symbol": "" + }, + "Palladium": { + "code": "XPD", + "symbol": "" + }, + "CFP Franc": { + "code": "XPF", + "symbol": "" + }, + "Platinum": { + "code": "XPT", + "symbol": "" + }, + "Codes specifically reserved for testing purposes": { + "code": "XTS", + "symbol": "" + }, + "Yemeni Rial": { + "code": "YER", + "symbol": "﷼" + }, + "Rand": { + "code": "ZAR", + "symbol": "R" + }, + "Rand Loti": { + "code": "ZAR LSL", + "symbol": "" + }, + "Rand Namibia Dollar": { + "code": "ZAR NAD", + "symbol": "" + }, + "Zambian Kwacha": { + "code": "ZMK", + "symbol": "" + }, + "Zimbabwe Dollar": { + "code": "ZWL", + "symbol": "" + } + }; + +},{}],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":151,"./currency":152,"./transaction_type":154}],154:[function(require,module,exports){ + module["exports"] = [ + "deposit", + "withdrawal", + "payment", + "invoice" + ]; + +},{}],155:[function(require,module,exports){ + module["exports"] = [ + "TCP", + "HTTP", + "SDD", + "RAM", + "GB", + "CSS", + "SSL", + "AGP", + "SQL", + "FTP", + "PCI", + "AI", + "ADP", + "RSS", + "XML", + "EXE", + "COM", + "HDD", + "THX", + "SMTP", + "SMS", + "USB", + "PNG", + "SAS", + "IB", + "SCSI", + "JSON", + "XSS", + "JBOD" + ]; + +},{}],156:[function(require,module,exports){ + module["exports"] = [ + "auxiliary", + "primary", + "back-end", + "digital", + "open-source", + "virtual", + "cross-platform", + "redundant", + "online", + "haptic", + "multi-byte", + "bluetooth", + "wireless", + "1080p", + "neural", + "optical", + "solid state", + "mobile" + ]; + +},{}],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":155,"./adjective":156,"./ingverb":158,"./noun":159,"./verb":160}],158:[function(require,module,exports){ + module["exports"] = [ + "backing up", + "bypassing", + "hacking", + "overriding", + "compressing", + "copying", + "navigating", + "indexing", + "connecting", + "generating", + "quantifying", + "calculating", + "synthesizing", + "transmitting", + "programming", + "parsing" + ]; + +},{}],159:[function(require,module,exports){ + module["exports"] = [ + "driver", + "protocol", + "bandwidth", + "panel", + "microchip", + "program", + "port", + "card", + "array", + "interface", + "system", + "sensor", + "firewall", + "hard drive", + "pixel", + "alarm", + "feed", + "monitor", + "application", + "transmitter", + "bus", + "circuit", + "capacitor", + "matrix" + ]; + +},{}],160:[function(require,module,exports){ + module["exports"] = [ + "back up", + "bypass", + "hack", + "override", + "compress", + "copy", + "navigate", + "index", + "connect", + "generate", + "quantify", + "calculate", + "synthesize", + "input", + "transmit", + "program", + "reboot", + "parse" + ]; + +},{}],161:[function(require,module,exports){ + var en = {}; + module['exports'] = en; + en.title = "English"; + en.separator = " & "; + en.address = require("./address"); + en.credit_card = require("./credit_card"); + en.company = require("./company"); + en.internet = require("./internet"); + en.lorem = require("./lorem"); + en.name = require("./name"); + en.phone_number = require("./phone_number"); + en.cell_phone = require("./cell_phone"); + en.business = require("./business"); + en.commerce = require("./commerce"); + 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":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", + "https://s3.amazonaws.com/uifaces/faces/twitter/Skyhartman/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/moscoz/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kurafire/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/91bilal/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/igorgarybaldi/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/calebogden/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/malykhinv/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/joelhelin/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kushsolitary/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/coreyweb/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/snowshade/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/areus/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/holdenweb/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/heyimjuani/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/envex/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/unterdreht/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/collegeman/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/peejfancher/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/andyisonline/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ultragex/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/fuck_you_two/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/adellecharles/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ateneupopular/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ahmetalpbalkan/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/Stievius/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kerem/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/osvaldas/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/angelceballos/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/thierrykoblentz/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/peterlandt/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/catarino/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/wr/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/weglov/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/brandclay/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/flame_kaizar/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ahmetsulek/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nicolasfolliot/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jayrobinson/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/victorerixon/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kolage/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/michzen/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/markjenkins/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nicolai_larsen/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/gt/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/noxdzine/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/alagoon/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/idiot/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mizko/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/chadengle/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mutlu82/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/simobenso/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/vocino/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/guiiipontes/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/soyjavi/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/joshaustin/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/tomaslau/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/VinThomas/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ManikRathee/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/langate/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/cemshid/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/leemunroe/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/_shahedk/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/enda/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/BillSKenney/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/divya/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/joshhemsley/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/sindresorhus/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/soffes/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/9lessons/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/linux29/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/Chakintosh/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/anaami/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/joreira/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/shadeed9/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/scottkclark/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jedbridges/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/salleedesign/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/marakasina/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ariil/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/BrianPurkiss/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/michaelmartinho/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/bublienko/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/devankoshal/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ZacharyZorbas/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/timmillwood/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/joshuasortino/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/damenleeturks/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/tomas_janousek/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/herrhaase/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/RussellBishop/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/brajeshwar/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nachtmeister/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/cbracco/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/bermonpainter/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/abdullindenis/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/isacosta/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/suprb/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/yalozhkin/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/chandlervdw/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/iamgarth/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/_victa/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/commadelimited/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/roybarberuk/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/axel/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/vladarbatov/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ffbel/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/syropian/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ankitind/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/traneblow/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/flashmurphy/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ChrisFarina78/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/baliomega/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/saschamt/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jm_denis/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/anoff/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kennyadr/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/chatyrko/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dingyi/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mds/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/terryxlife/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/aaroni/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kinday/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/prrstn/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/eduardostuart/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dhilipsiva/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/GavicoInd/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/baires/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/rohixx/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/bigmancho/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/blakesimkins/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/leeiio/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/tjrus/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/uberschizo/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kylefoundry/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/claudioguglieri/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ripplemdk/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/exentrich/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jakemoore/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/joaoedumedeiros/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/poormini/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/tereshenkov/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/keryilmaz/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/haydn_woods/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/rude/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/llun/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/sgaurav_baghel/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jamiebrittain/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/badlittleduck/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/pifagor/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/agromov/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/benefritz/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/erwanhesry/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/diesellaws/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jeremiaha/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/koridhandy/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/chaensel/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/andrewcohen/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/smaczny/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/gonzalorobaina/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nandini_m/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/sydlawrence/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/cdharrison/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/tgerken/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/lewisainslie/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/charliecwaite/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/robbschiller/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/flexrs/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mattdetails/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/raquelwilson/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/karsh/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mrmartineau/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/opnsrce/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/hgharrygo/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/maximseshuk/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/uxalex/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/samihah/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/chanpory/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/sharvin/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/josemarques/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jefffis/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/krystalfister/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/lokesh_coder/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/thedamianhdez/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dpmachado/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/funwatercat/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/timothycd/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ivanfilipovbg/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/picard102/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/marcobarbosa/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/krasnoukhov/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/g3d/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ademilter/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/rickdt/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/operatino/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/bungiwan/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/hugomano/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/logorado/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dc_user/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/horaciobella/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/SlaapMe/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/teeragit/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/iqonicd/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ilya_pestov/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/andrewarrow/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ssiskind/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/stan/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/HenryHoffman/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/rdsaunders/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/adamsxu/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/curiousoffice/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/themadray/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/michigangraham/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kohette/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nickfratter/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/runningskull/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/madysondesigns/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/brenton_clarke/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jennyshen/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/bradenhamm/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kurtinc/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/amanruzaini/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/coreyhaggard/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/Karimmove/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/aaronalfred/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/wtrsld/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jitachi/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/therealmarvin/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/pmeissner/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ooomz/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/chacky14/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jesseddy/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/thinmatt/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/shanehudson/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/akmur/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/IsaryAmairani/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/arthurholcombe1/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/andychipster/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/boxmodel/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ehsandiary/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/LucasPerdidao/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/shalt0ni/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/swaplord/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kaelifa/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/plbabin/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/guillemboti/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/arindam_/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/renbyrd/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/thiagovernetti/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jmillspaysbills/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mikemai2awesome/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jervo/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mekal/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/sta1ex/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/robergd/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/felipecsl/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/andrea211087/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/garand/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dhooyenga/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/abovefunction/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/pcridesagain/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/randomlies/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/BryanHorsey/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/heykenneth/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dahparra/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/allthingssmitty/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/danvernon/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/beweinreich/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/increase/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/falvarad/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/alxndrustinov/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/souuf/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/orkuncaylar/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/AM_Kn2/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/gearpixels/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/bassamology/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/vimarethomas/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kosmar/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/SULiik/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mrjamesnoble/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/silvanmuhlemann/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/shaneIxD/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nacho/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/yigitpinarbasi/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/buzzusborne/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/aaronkwhite/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/rmlewisuk/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/giancarlon/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nbirckel/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/d_nny_m_cher/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/sdidonato/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/atariboy/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/abotap/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/karalek/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/psdesignuk/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ludwiczakpawel/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nemanjaivanovic/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/baluli/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ahmadajmi/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/vovkasolovev/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/samgrover/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/derienzo777/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jonathansimmons/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nelsonjoyce/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/S0ufi4n3/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/xtopherpaul/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/oaktreemedia/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nateschulte/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/findingjenny/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/namankreative/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/antonyzotov/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/we_social/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/leehambley/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/solid_color/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/abelcabans/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mbilderbach/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kkusaa/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jordyvdboom/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/carlosgavina/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/pechkinator/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/vc27/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/rdbannon/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/croakx/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/suribbles/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kerihenare/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/catadeleon/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/gcmorley/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/duivvv/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/saschadroste/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/victorDubugras/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/wintopia/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mattbilotti/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/taylorling/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/megdraws/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/meln1ks/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mahmoudmetwally/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/Silveredge9/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/derekebradley/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/happypeter1983/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/travis_arnold/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/artem_kostenko/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/adobi/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/daykiine/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/alek_djuric/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/scips/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/miguelmendes/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/justinrhee/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/alsobrooks/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/fronx/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mcflydesign/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/santi_urso/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/allfordesign/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/stayuber/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/bertboerland/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/marosholly/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/adamnac/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/cynthiasavard/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/muringa/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/danro/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/hiemil/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jackiesaik/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/zacsnider/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/iduuck/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/antjanus/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/aroon_sharma/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dshster/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/thehacker/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/michaelbrooksjr/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ryanmclaughlin/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/clubb3rry/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/taybenlor/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/xripunov/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/myastro/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/adityasutomo/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/digitalmaverick/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/hjartstrorn/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/itolmach/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/vaughanmoffitt/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/abdots/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/isnifer/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/sergeysafonov/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/maz/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/scrapdnb/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/chrismj83/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/vitorleal/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/sokaniwaal/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/zaki3d/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/illyzoren/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mocabyte/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/osmanince/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/djsherman/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/davidhemphill/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/waghner/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/necodymiconer/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/praveen_vijaya/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/fabbrucci/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/cliffseal/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/travishines/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kuldarkalvik/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/Elt_n/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/phillapier/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/okseanjay/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/id835559/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kudretkeskin/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/anjhero/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/duck4fuck/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/scott_riley/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/noufalibrahim/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/h1brd/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/borges_marcos/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/devinhalladay/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ciaranr/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/stefooo/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mikebeecham/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/tonymillion/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/joshuaraichur/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/irae/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/petrangr/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dmitriychuta/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/charliegann/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/arashmanteghi/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/adhamdannaway/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ainsleywagon/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/svenlen/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/faisalabid/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/beshur/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/carlyson/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dutchnadia/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/teddyzetterlund/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/samuelkraft/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/aoimedia/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/toddrew/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/codepoet_ru/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/artvavs/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/benoitboucart/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jomarmen/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kolmarlopez/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/creartinc/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/homka/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/gaborenton/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/robinclediere/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/maximsorokin/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/plasticine/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/j2deme/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/peachananr/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kapaluccio/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/de_ascanio/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/rikas/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dawidwu/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/marcoramires/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/angelcreative/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/rpatey/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/popey/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/rehatkathuria/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/the_purplebunny/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/1markiz/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ajaxy_ru/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/brenmurrell/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dudestein/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/oskarlevinson/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/victorstuber/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nehfy/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/vicivadeline/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/leandrovaranda/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/scottgallant/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/victor_haydin/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/sawrb/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ryhanhassan/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/amayvs/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/a_brixen/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/karolkrakowiak_/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/herkulano/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/geran7/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/cggaurav/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/chris_witko/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/lososina/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/polarity/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mattlat/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/brandonburke/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/constantx/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/teylorfeliz/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/craigelimeliah/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/rachelreveley/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/reabo101/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/rahmeen/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ky/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/rickyyean/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/j04ntoh/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/spbroma/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/sebashton/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jpenico/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/francis_vega/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/oktayelipek/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kikillo/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/fabbianz/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/larrygerard/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/BroumiYoussef/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/0therplanet/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mbilalsiddique1/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ionuss/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/grrr_nl/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/liminha/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/rawdiggie/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ryandownie/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/sethlouey/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/pixage/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/arpitnj/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/switmer777/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/josevnclch/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kanickairaj/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/puzik/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/tbakdesigns/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/besbujupi/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/supjoey/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/lowie/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/linkibol/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/balintorosz/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/imcoding/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/agustincruiz/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/gusoto/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/thomasschrijer/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/superoutman/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kalmerrautam/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/gabrielizalo/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/gojeanyn/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/davidbaldie/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/_vojto/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/laurengray/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jydesign/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mymyboy/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nellleo/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/marciotoledo/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ninjad3m0/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/to_soham/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/hasslunsford/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/muridrahhal/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/levisan/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/grahamkennery/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/lepetitogre/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/antongenkin/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nessoila/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/amandabuzard/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/safrankov/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/cocolero/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dss49/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/matt3224/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/bluesix/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/quailandquasar/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/AlbertoCococi/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/lepinski/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/sementiy/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mhudobivnik/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/thibaut_re/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/olgary/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/shojberg/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mtolokonnikov/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/bereto/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/naupintos/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/wegotvices/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/xadhix/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/macxim/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/rodnylobos/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/madcampos/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/madebyvadim/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/bartoszdawydzik/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/supervova/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/markretzloff/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/vonachoo/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/darylws/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/stevedesigner/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mylesb/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/herbigt/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/depaulawagner/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/geshan/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/gizmeedevil1991/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/_scottburgess/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/lisovsky/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/davidsasda/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/artd_sign/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/YoungCutlass/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mgonto/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/itstotallyamy/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/victorquinn/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/osmond/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/oksanafrewer/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/zauerkraut/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/iamkeithmason/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nitinhayaran/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/lmjabreu/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mandalareopens/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/thinkleft/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ponchomendivil/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/juamperro/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/brunodesign1206/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/caseycavanagh/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/luxe/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dotgridline/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/spedwig/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/madewulf/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mattsapii/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/helderleal/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/chrisstumph/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jayphen/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nsamoylov/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/chrisvanderkooi/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/justme_timothyg/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/otozk/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/prinzadi/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/gu5taf/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/cyril_gaillard/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/d_kobelyatsky/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/daniloc/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nwdsha/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/romanbulah/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/skkirilov/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dvdwinden/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dannol/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/thekevinjones/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jwalter14/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/timgthomas/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/buddhasource/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/uxpiper/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/thatonetommy/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/diansigitp/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/adrienths/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/klimmka/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/gkaam/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/derekcramer/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jennyyo/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nerrsoft/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/xalionmalik/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/edhenderson/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/keyuri85/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/roxanejammet/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kimcool/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/edkf/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/matkins/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/alessandroribe/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jacksonlatka/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/lebronjennan/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kostaspt/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/karlkanall/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/moynihan/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/danpliego/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/saulihirvi/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/wesleytrankin/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/fjaguero/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/bowbrick/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mashaaaaal/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/yassiryahya/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dparrelli/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/fotomagin/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/aka_james/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/denisepires/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/iqbalperkasa/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/martinansty/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jarsen/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/r_oy/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/justinrob/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/gabrielrosser/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/malgordon/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/carlfairclough/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/michaelabehsera/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/pierrestoffe/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/enjoythetau/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/loganjlambert/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/rpeezy/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/coreyginnivan/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/michalhron/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/msveet/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/lingeswaran/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kolsvein/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/peter576/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/reideiredale/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/joeymurdah/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/raphaelnikson/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mvdheuvel/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/maxlinderman/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jimmuirhead/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/begreative/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/frankiefreesbie/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/robturlinckx/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/Talbi_ConSept/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/longlivemyword/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/vanchesz/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/maiklam/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/hermanobrother/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/rez___a/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/gregsqueeb/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/greenbes/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/_ragzor/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/anthonysukow/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/fluidbrush/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dactrtr/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jehnglynn/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/bergmartin/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/hugocornejo/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/_kkga/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dzantievm/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/sawalazar/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/sovesove/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jonsgotwood/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/byryan/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/vytautas_a/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mizhgan/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/cicerobr/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nilshelmersson/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/d33pthought/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/davecraige/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nckjrvs/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/alexandermayes/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jcubic/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/craigrcoles/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/bagawarman/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/rob_thomas10/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/cofla/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/maikelk/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/rtgibbons/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/russell_baylis/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mhesslow/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/codysanfilippo/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/webtanya/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/madebybrenton/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dcalonaci/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/perfectflow/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jjsiii/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/saarabpreet/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kumarrajan12123/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/iamsteffen/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/themikenagle/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ceekaytweet/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/larrybolt/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/conspirator/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dallasbpeters/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/n3dmax/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/terpimost/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kirillz/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/byrnecore/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/j_drake_/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/calebjoyce/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/russoedu/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/hoangloi/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/tobysaxon/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/gofrasdesign/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dimaposnyy/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/tjisousa/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/okandungel/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/billyroshan/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/oskamaya/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/motionthinks/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/knilob/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ashocka18/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/marrimo/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/bartjo/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/omnizya/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ernestsemerda/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/andreas_pr/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/edgarchris99/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/thomasgeisen/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/gseguin/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/joannefournier/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/demersdesigns/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/adammarsbar/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nasirwd/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/n_tassone/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/javorszky/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/themrdave/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/yecidsm/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nicollerich/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/canapud/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nicoleglynn/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/judzhin_miles/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/designervzm/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kianoshp/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/evandrix/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/alterchuca/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dhrubo/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ma_tiax/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ssbb_me/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dorphern/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mauriolg/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/bruno_mart/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mactopus/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/the_winslet/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/joemdesign/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/Shriiiiimp/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jacobbennett/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nfedoroff/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/iamglimy/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/allagringaus/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/aiiaiiaii/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/olaolusoga/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/buryaknick/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/wim1k/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nicklacke/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/a1chapone/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/steynviljoen/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/strikewan/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ryankirkman/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/andrewabogado/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/doooon/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jagan123/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ariffsetiawan/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/elenadissi/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mwarkentin/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/thierrymeier_/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/r_garcia/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dmackerman/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/borantula/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/konus/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/spacewood_/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ryuchi311/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/evanshajed/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/tristanlegros/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/shoaib253/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/aislinnkelly/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/okcoker/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/timpetricola/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/sunshinedgirl/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/chadami/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/aleclarsoniv/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nomidesigns/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/petebernardo/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/scottiedude/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/millinet/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/imsoper/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/imammuht/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/benjamin_knight/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nepdud/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/joki4/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/lanceguyatt/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/bboy1895/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/amywebbb/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/rweve/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/haruintesettden/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ricburton/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nelshd/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/batsirai/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/primozcigler/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jffgrdnr/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/8d3k/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/geneseleznev/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/al_li/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/souperphly/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mslarkina/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/2fockus/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/cdavis565/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/xiel/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/turkutuuli/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/uxward/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/lebinoclard/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/gauravjassal/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/davidmerrique/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mdsisto/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/andrewofficer/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kojourin/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dnirmal/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kevka/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mr_shiznit/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/aluisio_azevedo/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/cloudstudio/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/danvierich/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/alexivanichkin/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/fran_mchamy/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/perretmagali/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/betraydan/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/cadikkara/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/matbeedotcom/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jeremyworboys/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/bpartridge/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/michaelkoper/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/silv3rgvn/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/alevizio/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/johnsmithagency/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/lawlbwoy/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/vitor376/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/desastrozo/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/thimo_cz/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jasonmarkjones/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/lhausermann/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/xravil/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/guischmitt/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/vigobronx/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/panghal0/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/miguelkooreman/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/surgeonist/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/christianoliff/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/caspergrl/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/iamkarna/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ipavelek/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/pierre_nel/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/y2graphic/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/sterlingrules/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/elbuscainfo/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/bennyjien/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/stushona/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/estebanuribe/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/embrcecreations/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/danillos/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/elliotlewis/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/charlesrpratt/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/vladyn/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/emmeffess/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/carlosblanco_eu/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/leonfedotov/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/rangafangs/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/chris_frees/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/tgormtx/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/bryan_topham/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jpscribbles/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mighty55/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/carbontwelve/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/isaacfifth/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/iamjdeleon/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/snowwrite/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/barputro/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/drewbyreese/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/sachacorazzi/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/bistrianiosip/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/magoo04/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/pehamondello/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/yayteejay/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/a_harris88/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/algunsanabria/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/zforrester/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ovall/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/carlosjgsousa/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/geobikas/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ah_lice/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/looneydoodle/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nerdgr8/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ddggccaa/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/zackeeler/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/normanbox/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/el_fuertisimo/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ismail_biltagi/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/juangomezw/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jnmnrd/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/patrickcoombe/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ryanjohnson_me/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/markolschesky/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jeffgolenski/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kvasnic/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/lindseyzilla/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/gauchomatt/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/afusinatto/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kevinoh/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/okansurreel/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/adamawesomeface/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/emileboudeling/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/arishi_/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/juanmamartinez/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/wikiziner/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/danthms/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mkginfo/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/terrorpixel/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/curiousonaut/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/prheemo/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/michaelcolenso/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/foczzi/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/martip07/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/thaodang17/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/johncafazza/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/robinlayfield/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/franciscoamk/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/abdulhyeuk/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/marklamb/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/edobene/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/andresenfredrik/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mikaeljorhult/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/chrisslowik/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/vinciarts/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/meelford/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/elliotnolten/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/yehudab/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/vijaykarthik/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/bfrohs/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/josep_martins/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/attacks/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/sur4dye/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/tumski/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/instalox/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mangosango/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/paulfarino/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kazaky999/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kiwiupover/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nvkznemo/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/tom_even/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ratbus/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/woodsman001/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/joshmedeski/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/thewillbeard/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/psaikali/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/joe_black/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/aleinadsays/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/marcusgorillius/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/hota_v/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jghyllebert/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/shinze/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/janpalounek/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jeremiespoken/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/her_ruu/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dansowter/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/felipeapiress/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/magugzbrand2d/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/posterjob/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nathalie_fs/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/bobbytwoshoes/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dreizle/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jeremymouton/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/elisabethkjaer/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/notbadart/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mohanrohith/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jlsolerdeltoro/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/itskawsar/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/slowspock/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/zvchkelly/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/wiljanslofstra/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/craighenneberry/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/trubeatto/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/juaumlol/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/samscouto/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/BenouarradeM/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/gipsy_raf/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/netonet_il/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/arkokoley/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/itsajimithing/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/smalonso/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/victordeanda/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/_dwite_/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/richardgarretts/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/gregrwilkinson/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/anatolinicolae/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/lu4sh1i/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/stefanotirloni/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ostirbu/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/darcystonge/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/naitanamoreno/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/michaelcomiskey/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/adhiardana/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/marcomano_/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/davidcazalis/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/falconerie/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/gregkilian/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/bcrad/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/bolzanmarco/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/low_res/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/vlajki/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/petar_prog/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jonkspr/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/akmalfikri/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mfacchinello/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/atanism/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/harry_sistalam/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/murrayswift/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/bobwassermann/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/gavr1l0/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/madshensel/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mr_subtle/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/deviljho_/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/salimianoff/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/joetruesdell/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/twittypork/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/airskylar/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dnezkumar/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dgajjar/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/cherif_b/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/salvafc/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/louis_currie/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/deeenright/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/cybind/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/eyronn/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/vickyshits/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/sweetdelisa/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/cboller1/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/andresdjasso/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/melvindidit/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/andysolomon/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/thaisselenator_/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/lvovenok/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/giuliusa/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/belyaev_rs/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/overcloacked/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kamal_chaneman/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/incubo82/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/hellofeverrrr/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mhaligowski/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/sunlandictwin/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/bu7921/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/andytlaw/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jeremery/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/finchjke/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/manigm/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/umurgdk/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/scottfeltham/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ganserene/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mutu_krish/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jodytaggart/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ntfblog/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/tanveerrao/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/hfalucas/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/alxleroydeval/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kucingbelang4/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/bargaorobalo/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/colgruv/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/stalewine/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kylefrost/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/baumannzone/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/angelcolberg/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/sachingawas/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jjshaw14/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ramanathan_pdy/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/johndezember/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nilshoenson/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/brandonmorreale/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nutzumi/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/brandonflatsoda/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/sergeyalmone/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/klefue/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kirangopal/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/baumann_alex/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/matthewkay_/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jay_wilburn/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/shesgared/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/apriendeau/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/johnriordan/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/wake_gs/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/aleksitappura/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/emsgulam/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/xilantra/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/imomenui/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/sircalebgrove/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/newbrushes/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/hsinyo23/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/m4rio/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/katiemdaly/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/s4f1/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ecommerceil/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/marlinjayakody/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/swooshycueb/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/sangdth/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/coderdiaz/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/bluefx_/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/vivekprvr/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/sasha_shestakov/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/eugeneeweb/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dgclegg/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/n1ght_coder/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dixchen/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/blakehawksworth/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/trueblood_33/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/hai_ninh_nguyen/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/marclgonzales/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/yesmeck/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/stephcoue/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/doronmalki/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ruehldesign/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/anasnakawa/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kijanmaharjan/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/wearesavas/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/stefvdham/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/tweetubhai/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/alecarpentier/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/fiterik/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/antonyryndya/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/d00maz/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/theonlyzeke/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/missaaamy/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/carlosm/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/manekenthe/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/reetajayendra/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jeremyshimko/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/justinrgraham/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/stefanozoffoli/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/overra/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mrebay007/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/shvelo96/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/pyronite/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/thedjpetersen/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/rtyukmaev/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/_williamguerra/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/albertaugustin/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/vikashpathak18/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kevinjohndayy/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/vj_demien/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/colirpixoil/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/goddardlewis/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/laasli/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jqiuss/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/heycamtaylor/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nastya_mane/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mastermindesign/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ccinojasso1/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/nyancecom/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/sandywoodruff/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/bighanddesign/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/sbtransparent/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/aviddayentonbay/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/richwild/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kaysix_dizzy/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/tur8le/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/seyedhossein1/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/privetwagner/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/emmandenn/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dev_essentials/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jmfsocial/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/_yardenoon/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mateaodviteza/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/weavermedia/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mufaddal_mw/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/hafeeskhan/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ashernatali/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/sulaqo/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/eddiechen/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/josecarlospsh/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/vm_f/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/enricocicconi/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/danmartin70/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/gmourier/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/donjain/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mrxloka/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/_pedropinho/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/eitarafa/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/oscarowusu/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ralph_lam/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/panchajanyag/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/woodydotmx/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/jerrybai1907/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/marshallchen_/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/xamorep/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/aio___/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/chaabane_wail/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/txcx/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/akashsharma39/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/falling_soul/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/sainraja/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mugukamil/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/johannesneu/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/markwienands/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/karthipanraj/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/balakayuriy/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/alan_zhang_/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/layerssss/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/kaspernordkvist/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/mirfanqureshi/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/hanna_smi/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/VMilescu/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/aeon56/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/m_kalibry/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/sreejithexp/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dicesales/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/dhoot_amit/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/smenov/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/lonesomelemon/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/vladimirdevic/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/joelcipriano/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/haligaliharun/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/buleswapnil/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/serefka/128.jpg", + "https://s3.amazonaws.com/uifaces/faces/twitter/ifarafonow/128.jpg", + "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" + ]; + +},{}],163:[function(require,module,exports){ + module["exports"] = [ + "com", + "biz", + "info", + "name", + "net", + "org" + ]; + +},{}],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}],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":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":168,"./words":169}],168:[function(require,module,exports){ + module["exports"] = [ + "abbas", + "abduco", + "abeo", + "abscido", + "absconditus", + "absens", + "absorbeo", + "absque", + "abstergo", + "absum", + "abundans", + "abutor", + "accedo", + "accendo", + "acceptus", + "accipio", + "accommodo", + "accusator", + "acer", + "acerbitas", + "acervus", + "acidus", + "acies", + "acquiro", + "acsi", + "adamo", + "adaugeo", + "addo", + "adduco", + "ademptio", + "adeo", + "adeptio", + "adfectus", + "adfero", + "adficio", + "adflicto", + "adhaero", + "adhuc", + "adicio", + "adimpleo", + "adinventitias", + "adipiscor", + "adiuvo", + "administratio", + "admiratio", + "admitto", + "admoneo", + "admoveo", + "adnuo", + "adopto", + "adsidue", + "adstringo", + "adsuesco", + "adsum", + "adulatio", + "adulescens", + "adultus", + "aduro", + "advenio", + "adversus", + "advoco", + "aedificium", + "aeger", + "aegre", + "aegrotatio", + "aegrus", + "aeneus", + "aequitas", + "aequus", + "aer", + "aestas", + "aestivus", + "aestus", + "aetas", + "aeternus", + "ager", + "aggero", + "aggredior", + "agnitio", + "agnosco", + "ago", + "ait", + "aiunt", + "alienus", + "alii", + "alioqui", + "aliqua", + "alius", + "allatus", + "alo", + "alter", + "altus", + "alveus", + "amaritudo", + "ambitus", + "ambulo", + "amicitia", + "amiculum", + "amissio", + "amita", + "amitto", + "amo", + "amor", + "amoveo", + "amplexus", + "amplitudo", + "amplus", + "ancilla", + "angelus", + "angulus", + "angustus", + "animadverto", + "animi", + "animus", + "annus", + "anser", + "ante", + "antea", + "antepono", + "antiquus", + "aperio", + "aperte", + "apostolus", + "apparatus", + "appello", + "appono", + "appositus", + "approbo", + "apto", + "aptus", + "apud", + "aqua", + "ara", + "aranea", + "arbitro", + "arbor", + "arbustum", + "arca", + "arceo", + "arcesso", + "arcus", + "argentum", + "argumentum", + "arguo", + "arma", + "armarium", + "armo", + "aro", + "ars", + "articulus", + "artificiose", + "arto", + "arx", + "ascisco", + "ascit", + "asper", + "aspicio", + "asporto", + "assentator", + "astrum", + "atavus", + "ater", + "atqui", + "atrocitas", + "atrox", + "attero", + "attollo", + "attonbitus", + "auctor", + "auctus", + "audacia", + "audax", + "audentia", + "audeo", + "audio", + "auditor", + "aufero", + "aureus", + "auris", + "aurum", + "aut", + "autem", + "autus", + "auxilium", + "avaritia", + "avarus", + "aveho", + "averto", + "avoco", + "baiulus", + "balbus", + "barba", + "bardus", + "basium", + "beatus", + "bellicus", + "bellum", + "bene", + "beneficium", + "benevolentia", + "benigne", + "bestia", + "bibo", + "bis", + "blandior", + "bonus", + "bos", + "brevis", + "cado", + "caecus", + "caelestis", + "caelum", + "calamitas", + "calcar", + "calco", + "calculus", + "callide", + "campana", + "candidus", + "canis", + "canonicus", + "canto", + "capillus", + "capio", + "capitulus", + "capto", + "caput", + "carbo", + "carcer", + "careo", + "caries", + "cariosus", + "caritas", + "carmen", + "carpo", + "carus", + "casso", + "caste", + "casus", + "catena", + "caterva", + "cattus", + "cauda", + "causa", + "caute", + "caveo", + "cavus", + "cedo", + "celebrer", + "celer", + "celo", + "cena", + "cenaculum", + "ceno", + "censura", + "centum", + "cerno", + "cernuus", + "certe", + "certo", + "certus", + "cervus", + "cetera", + "charisma", + "chirographum", + "cibo", + "cibus", + "cicuta", + "cilicium", + "cimentarius", + "ciminatio", + "cinis", + "circumvenio", + "cito", + "civis", + "civitas", + "clam", + "clamo", + "claro", + "clarus", + "claudeo", + "claustrum", + "clementia", + "clibanus", + "coadunatio", + "coaegresco", + "coepi", + "coerceo", + "cogito", + "cognatus", + "cognomen", + "cogo", + "cohaero", + "cohibeo", + "cohors", + "colligo", + "colloco", + "collum", + "colo", + "color", + "coma", + "combibo", + "comburo", + "comedo", + "comes", + "cometes", + "comis", + "comitatus", + "commemoro", + "comminor", + "commodo", + "communis", + "comparo", + "compello", + "complectus", + "compono", + "comprehendo", + "comptus", + "conatus", + "concedo", + "concido", + "conculco", + "condico", + "conduco", + "confero", + "confido", + "conforto", + "confugo", + "congregatio", + "conicio", + "coniecto", + "conitor", + "coniuratio", + "conor", + "conqueror", + "conscendo", + "conservo", + "considero", + "conspergo", + "constans", + "consuasor", + "contabesco", + "contego", + "contigo", + "contra", + "conturbo", + "conventus", + "convoco", + "copia", + "copiose", + "cornu", + "corona", + "corpus", + "correptius", + "corrigo", + "corroboro", + "corrumpo", + "coruscus", + "cotidie", + "crapula", + "cras", + "crastinus", + "creator", + "creber", + "crebro", + "credo", + "creo", + "creptio", + "crepusculum", + "cresco", + "creta", + "cribro", + "crinis", + "cruciamentum", + "crudelis", + "cruentus", + "crur", + "crustulum", + "crux", + "cubicularis", + "cubitum", + "cubo", + "cui", + "cuius", + "culpa", + "culpo", + "cultellus", + "cultura", + "cum", + "cunabula", + "cunae", + "cunctatio", + "cupiditas", + "cupio", + "cuppedia", + "cupressus", + "cur", + "cura", + "curatio", + "curia", + "curiositas", + "curis", + "curo", + "curriculum", + "currus", + "cursim", + "curso", + "cursus", + "curto", + "curtus", + "curvo", + "curvus", + "custodia", + "damnatio", + "damno", + "dapifer", + "debeo", + "debilito", + "decens", + "decerno", + "decet", + "decimus", + "decipio", + "decor", + "decretum", + "decumbo", + "dedecor", + "dedico", + "deduco", + "defaeco", + "defendo", + "defero", + "defessus", + "defetiscor", + "deficio", + "defigo", + "defleo", + "defluo", + "defungo", + "degenero", + "degero", + "degusto", + "deinde", + "delectatio", + "delego", + "deleo", + "delibero", + "delicate", + "delinquo", + "deludo", + "demens", + "demergo", + "demitto", + "demo", + "demonstro", + "demoror", + "demulceo", + "demum", + "denego", + "denique", + "dens", + "denuncio", + "denuo", + "deorsum", + "depereo", + "depono", + "depopulo", + "deporto", + "depraedor", + "deprecator", + "deprimo", + "depromo", + "depulso", + "deputo", + "derelinquo", + "derideo", + "deripio", + "desidero", + "desino", + "desipio", + "desolo", + "desparatus", + "despecto", + "despirmatio", + "infit", + "inflammatio", + "paens", + "patior", + "patria", + "patrocinor", + "patruus", + "pauci", + "paulatim", + "pauper", + "pax", + "peccatus", + "pecco", + "pecto", + "pectus", + "pecunia", + "pecus", + "peior", + "pel", + "ocer", + "socius", + "sodalitas", + "sol", + "soleo", + "solio", + "solitudo", + "solium", + "sollers", + "sollicito", + "solum", + "solus", + "solutio", + "solvo", + "somniculosus", + "somnus", + "sonitus", + "sono", + "sophismata", + "sopor", + "sordeo", + "sortitus", + "spargo", + "speciosus", + "spectaculum", + "speculum", + "sperno", + "spero", + "spes", + "spiculum", + "spiritus", + "spoliatio", + "sponte", + "stabilis", + "statim", + "statua", + "stella", + "stillicidium", + "stipes", + "stips", + "sto", + "strenuus", + "strues", + "studio", + "stultus", + "suadeo", + "suasoria", + "sub", + "subito", + "subiungo", + "sublime", + "subnecto", + "subseco", + "substantia", + "subvenio", + "succedo", + "succurro", + "sufficio", + "suffoco", + "suffragium", + "suggero", + "sui", + "sulum", + "sum", + "summa", + "summisse", + "summopere", + "sumo", + "sumptus", + "supellex", + "super", + "suppellex", + "supplanto", + "suppono", + "supra", + "surculus", + "surgo", + "sursum", + "suscipio", + "suspendo", + "sustineo", + "suus", + "synagoga", + "tabella", + "tabernus", + "tabesco", + "tabgo", + "tabula", + "taceo", + "tactus", + "taedium", + "talio", + "talis", + "talus", + "tam", + "tamdiu", + "tamen", + "tametsi", + "tamisium", + "tamquam", + "tandem", + "tantillus", + "tantum", + "tardus", + "tego", + "temeritas", + "temperantia", + "templum", + "temptatio", + "tempus", + "tenax", + "tendo", + "teneo", + "tener", + "tenuis", + "tenus", + "tepesco", + "tepidus", + "ter", + "terebro", + "teres", + "terga", + "tergeo", + "tergiversatio", + "tergo", + "tergum", + "termes", + "terminatio", + "tero", + "terra", + "terreo", + "territo", + "terror", + "tersus", + "tertius", + "testimonium", + "texo", + "textilis", + "textor", + "textus", + "thalassinus", + "theatrum", + "theca", + "thema", + "theologus", + "thermae", + "thesaurus", + "thesis", + "thorax", + "thymbra", + "thymum", + "tibi", + "timidus", + "timor", + "titulus", + "tolero", + "tollo", + "tondeo", + "tonsor", + "torqueo", + "torrens", + "tot", + "totidem", + "toties", + "totus", + "tracto", + "trado", + "traho", + "trans", + "tredecim", + "tremo", + "trepide", + "tres", + "tribuo", + "tricesimus", + "triduana", + "triginta", + "tripudio", + "tristis", + "triumphus", + "trucido", + "truculenter", + "tubineus", + "tui", + "tum", + "tumultus", + "tunc", + "turba", + "turbo", + "turpe", + "turpis", + "tutamen", + "tutis", + "tyrannus", + "uberrime", + "ubi", + "ulciscor", + "ullus", + "ulterius", + "ultio", + "ultra", + "umbra", + "umerus", + "umquam", + "una", + "unde", + "undique", + "universe", + "unus", + "urbanus", + "urbs", + "uredo", + "usitas", + "usque", + "ustilo", + "ustulo", + "usus", + "uter", + "uterque", + "utilis", + "utique", + "utor", + "utpote", + "utrimque", + "utroque", + "utrum", + "uxor", + "vaco", + "vacuus", + "vado", + "vae", + "valde", + "valens", + "valeo", + "valetudo", + "validus", + "vallum", + "vapulus", + "varietas", + "varius", + "vehemens", + "vel", + "velociter", + "velum", + "velut", + "venia", + "venio", + "ventito", + "ventosus", + "ventus", + "venustas", + "ver", + "verbera", + "verbum", + "vere", + "verecundia", + "vereor", + "vergo", + "veritas", + "vero", + "versus", + "verto", + "verumtamen", + "verus", + "vesco", + "vesica", + "vesper", + "vespillo", + "vester", + "vestigium", + "vestrum", + "vetus", + "via", + "vicinus", + "vicissitudo", + "victoria", + "victus", + "videlicet", + "video", + "viduata", + "viduo", + "vigilo", + "vigor", + "vilicus", + "vilis", + "vilitas", + "villa", + "vinco", + "vinculum", + "vindico", + "vinitor", + "vinum", + "vir", + "virga", + "virgo", + "viridis", + "viriliter", + "virtus", + "vis", + "viscus", + "vita", + "vitiosus", + "vitium", + "vito", + "vivo", + "vix", + "vobis", + "vociferor", + "voco", + "volaticus", + "volo", + "volubilis", + "voluntarius", + "volup", + "volutabrum", + "volva", + "vomer", + "vomica", + "vomito", + "vorago", + "vorax", + "voro", + "vos", + "votum", + "voveo", + "vox", + "vulariter", + "vulgaris", + "vulgivagus", + "vulgo", + "vulgus", + "vulnero", + "vulnus", + "vulpes", + "vulticulus", + "vultuosus", + "xiphias" + ]; + +},{}],169:[function(require,module,exports){ + module.exports=require(39) +},{"/Users/a/dev/faker.js/lib/locales/de/lorem/words.js":39}],170:[function(require,module,exports){ + module["exports"] = [ + "Aaliyah", + "Aaron", + "Abagail", + "Abbey", + "Abbie", + "Abbigail", + "Abby", + "Abdiel", + "Abdul", + "Abdullah", + "Abe", + "Abel", + "Abelardo", + "Abigail", + "Abigale", + "Abigayle", + "Abner", + "Abraham", + "Ada", + "Adah", + "Adalberto", + "Adaline", + "Adam", + "Adan", + "Addie", + "Addison", + "Adela", + "Adelbert", + "Adele", + "Adelia", + "Adeline", + "Adell", + "Adella", + "Adelle", + "Aditya", + "Adolf", + "Adolfo", + "Adolph", + "Adolphus", + "Adonis", + "Adrain", + "Adrian", + "Adriana", + "Adrianna", + "Adriel", + "Adrien", + "Adrienne", + "Afton", + "Aglae", + "Agnes", + "Agustin", + "Agustina", + "Ahmad", + "Ahmed", + "Aida", + "Aidan", + "Aiden", + "Aileen", + "Aimee", + "Aisha", + "Aiyana", + "Akeem", + "Al", + "Alaina", + "Alan", + "Alana", + "Alanis", + "Alanna", + "Alayna", + "Alba", + "Albert", + "Alberta", + "Albertha", + "Alberto", + "Albin", + "Albina", + "Alda", + "Alden", + "Alec", + "Aleen", + "Alejandra", + "Alejandrin", + "Alek", + "Alena", + "Alene", + "Alessandra", + "Alessandro", + "Alessia", + "Aletha", + "Alex", + "Alexa", + "Alexander", + "Alexandra", + "Alexandre", + "Alexandrea", + "Alexandria", + "Alexandrine", + "Alexandro", + "Alexane", + "Alexanne", + "Alexie", + "Alexis", + "Alexys", + "Alexzander", + "Alf", + "Alfonso", + "Alfonzo", + "Alford", + "Alfred", + "Alfreda", + "Alfredo", + "Ali", + "Alia", + "Alice", + "Alicia", + "Alisa", + "Alisha", + "Alison", + "Alivia", + "Aliya", + "Aliyah", + "Aliza", + "Alize", + "Allan", + "Allen", + "Allene", + "Allie", + "Allison", + "Ally", + "Alphonso", + "Alta", + "Althea", + "Alva", + "Alvah", + "Alvena", + "Alvera", + "Alverta", + "Alvina", + "Alvis", + "Alyce", + "Alycia", + "Alysa", + "Alysha", + "Alyson", + "Alysson", + "Amalia", + "Amanda", + "Amani", + "Amara", + "Amari", + "Amaya", + "Amber", + "Ambrose", + "Amelia", + "Amelie", + "Amely", + "America", + "Americo", + "Amie", + "Amina", + "Amir", + "Amira", + "Amiya", + "Amos", + "Amparo", + "Amy", + "Amya", + "Ana", + "Anabel", + "Anabelle", + "Anahi", + "Anais", + "Anastacio", + "Anastasia", + "Anderson", + "Andre", + "Andreane", + "Andreanne", + "Andres", + "Andrew", + "Andy", + "Angel", + "Angela", + "Angelica", + "Angelina", + "Angeline", + "Angelita", + "Angelo", + "Angie", + "Angus", + "Anibal", + "Anika", + "Anissa", + "Anita", + "Aniya", + "Aniyah", + "Anjali", + "Anna", + "Annabel", + "Annabell", + "Annabelle", + "Annalise", + "Annamae", + "Annamarie", + "Anne", + "Annetta", + "Annette", + "Annie", + "Ansel", + "Ansley", + "Anthony", + "Antoinette", + "Antone", + "Antonetta", + "Antonette", + "Antonia", + "Antonietta", + "Antonina", + "Antonio", + "Antwan", + "Antwon", + "Anya", + "April", + "Ara", + "Araceli", + "Aracely", + "Arch", + "Archibald", + "Ardella", + "Arden", + "Ardith", + "Arely", + "Ari", + "Ariane", + "Arianna", + "Aric", + "Ariel", + "Arielle", + "Arjun", + "Arlene", + "Arlie", + "Arlo", + "Armand", + "Armando", + "Armani", + "Arnaldo", + "Arne", + "Arno", + "Arnold", + "Arnoldo", + "Arnulfo", + "Aron", + "Art", + "Arthur", + "Arturo", + "Arvel", + "Arvid", + "Arvilla", + "Aryanna", + "Asa", + "Asha", + "Ashlee", + "Ashleigh", + "Ashley", + "Ashly", + "Ashlynn", + "Ashton", + "Ashtyn", + "Asia", + "Assunta", + "Astrid", + "Athena", + "Aubree", + "Aubrey", + "Audie", + "Audra", + "Audreanne", + "Audrey", + "August", + "Augusta", + "Augustine", + "Augustus", + "Aurelia", + "Aurelie", + "Aurelio", + "Aurore", + "Austen", + "Austin", + "Austyn", + "Autumn", + "Ava", + "Avery", + "Avis", + "Axel", + "Ayana", + "Ayden", + "Ayla", + "Aylin", + "Baby", + "Bailee", + "Bailey", + "Barbara", + "Barney", + "Baron", + "Barrett", + "Barry", + "Bart", + "Bartholome", + "Barton", + "Baylee", + "Beatrice", + "Beau", + "Beaulah", + "Bell", + "Bella", + "Belle", + "Ben", + "Benedict", + "Benjamin", + "Bennett", + "Bennie", + "Benny", + "Benton", + "Berenice", + "Bernadette", + "Bernadine", + "Bernard", + "Bernardo", + "Berneice", + "Bernhard", + "Bernice", + "Bernie", + "Berniece", + "Bernita", + "Berry", + "Bert", + "Berta", + "Bertha", + "Bertram", + "Bertrand", + "Beryl", + "Bessie", + "Beth", + "Bethany", + "Bethel", + "Betsy", + "Bette", + "Bettie", + "Betty", + "Bettye", + "Beulah", + "Beverly", + "Bianka", + "Bill", + "Billie", + "Billy", + "Birdie", + "Blair", + "Blaise", + "Blake", + "Blanca", + "Blanche", + "Blaze", + "Bo", + "Bobbie", + "Bobby", + "Bonita", + "Bonnie", + "Boris", + "Boyd", + "Brad", + "Braden", + "Bradford", + "Bradley", + "Bradly", + "Brady", + "Braeden", + "Brain", + "Brandi", + "Brando", + "Brandon", + "Brandt", + "Brandy", + "Brandyn", + "Brannon", + "Branson", + "Brant", + "Braulio", + "Braxton", + "Brayan", + "Breana", + "Breanna", + "Breanne", + "Brenda", + "Brendan", + "Brenden", + "Brendon", + "Brenna", + "Brennan", + "Brennon", + "Brent", + "Bret", + "Brett", + "Bria", + "Brian", + "Briana", + "Brianne", + "Brice", + "Bridget", + "Bridgette", + "Bridie", + "Brielle", + "Brigitte", + "Brionna", + "Brisa", + "Britney", + "Brittany", + "Brock", + "Broderick", + "Brody", + "Brook", + "Brooke", + "Brooklyn", + "Brooks", + "Brown", + "Bruce", + "Bryana", + "Bryce", + "Brycen", + "Bryon", + "Buck", + "Bud", + "Buddy", + "Buford", + "Bulah", + "Burdette", + "Burley", + "Burnice", + "Buster", + "Cade", + "Caden", + "Caesar", + "Caitlyn", + "Cale", + "Caleb", + "Caleigh", + "Cali", + "Calista", + "Callie", + "Camden", + "Cameron", + "Camila", + "Camilla", + "Camille", + "Camren", + "Camron", + "Camryn", + "Camylle", + "Candace", + "Candelario", + "Candice", + "Candida", + "Candido", + "Cara", + "Carey", + "Carissa", + "Carlee", + "Carleton", + "Carley", + "Carli", + "Carlie", + "Carlo", + "Carlos", + "Carlotta", + "Carmel", + "Carmela", + "Carmella", + "Carmelo", + "Carmen", + "Carmine", + "Carol", + "Carolanne", + "Carole", + "Carolina", + "Caroline", + "Carolyn", + "Carolyne", + "Carrie", + "Carroll", + "Carson", + "Carter", + "Cary", + "Casandra", + "Casey", + "Casimer", + "Casimir", + "Casper", + "Cassandra", + "Cassandre", + "Cassidy", + "Cassie", + "Catalina", + "Caterina", + "Catharine", + "Catherine", + "Cathrine", + "Cathryn", + "Cathy", + "Cayla", + "Ceasar", + "Cecelia", + "Cecil", + "Cecile", + "Cecilia", + "Cedrick", + "Celestine", + "Celestino", + "Celia", + "Celine", + "Cesar", + "Chad", + "Chadd", + "Chadrick", + "Chaim", + "Chance", + "Chandler", + "Chanel", + "Chanelle", + "Charity", + "Charlene", + "Charles", + "Charley", + "Charlie", + "Charlotte", + "Chase", + "Chasity", + "Chauncey", + "Chaya", + "Chaz", + "Chelsea", + "Chelsey", + "Chelsie", + "Chesley", + "Chester", + "Chet", + "Cheyanne", + "Cheyenne", + "Chloe", + "Chris", + "Christ", + "Christa", + "Christelle", + "Christian", + "Christiana", + "Christina", + "Christine", + "Christop", + "Christophe", + "Christopher", + "Christy", + "Chyna", + "Ciara", + "Cicero", + "Cielo", + "Cierra", + "Cindy", + "Citlalli", + "Clair", + "Claire", + "Clara", + "Clarabelle", + "Clare", + "Clarissa", + "Clark", + "Claud", + "Claude", + "Claudia", + "Claudie", + "Claudine", + "Clay", + "Clemens", + "Clement", + "Clementina", + "Clementine", + "Clemmie", + "Cleo", + "Cleora", + "Cleta", + "Cletus", + "Cleve", + "Cleveland", + "Clifford", + "Clifton", + "Clint", + "Clinton", + "Clotilde", + "Clovis", + "Cloyd", + "Clyde", + "Coby", + "Cody", + "Colby", + "Cole", + "Coleman", + "Colin", + "Colleen", + "Collin", + "Colt", + "Colten", + "Colton", + "Columbus", + "Concepcion", + "Conner", + "Connie", + "Connor", + "Conor", + "Conrad", + "Constance", + "Constantin", + "Consuelo", + "Cooper", + "Cora", + "Coralie", + "Corbin", + "Cordelia", + "Cordell", + "Cordia", + "Cordie", + "Corene", + "Corine", + "Cornelius", + "Cornell", + "Corrine", + "Cortez", + "Cortney", + "Cory", + "Coty", + "Courtney", + "Coy", + "Craig", + "Crawford", + "Creola", + "Cristal", + "Cristian", + "Cristina", + "Cristobal", + "Cristopher", + "Cruz", + "Crystal", + "Crystel", + "Cullen", + "Curt", + "Curtis", + "Cydney", + "Cynthia", + "Cyril", + "Cyrus", + "Dagmar", + "Dahlia", + "Daija", + "Daisha", + "Daisy", + "Dakota", + "Dale", + "Dallas", + "Dallin", + "Dalton", + "Damaris", + "Dameon", + "Damian", + "Damien", + "Damion", + "Damon", + "Dan", + "Dana", + "Dandre", + "Dane", + "D'angelo", + "Dangelo", + "Danial", + "Daniela", + "Daniella", + "Danielle", + "Danika", + "Dannie", + "Danny", + "Dante", + "Danyka", + "Daphne", + "Daphnee", + "Daphney", + "Darby", + "Daren", + "Darian", + "Dariana", + "Darien", + "Dario", + "Darion", + "Darius", + "Darlene", + "Daron", + "Darrel", + "Darrell", + "Darren", + "Darrick", + "Darrin", + "Darrion", + "Darron", + "Darryl", + "Darwin", + "Daryl", + "Dashawn", + "Dasia", + "Dave", + "David", + "Davin", + "Davion", + "Davon", + "Davonte", + "Dawn", + "Dawson", + "Dax", + "Dayana", + "Dayna", + "Dayne", + "Dayton", + "Dean", + "Deangelo", + "Deanna", + "Deborah", + "Declan", + "Dedric", + "Dedrick", + "Dee", + "Deion", + "Deja", + "Dejah", + "Dejon", + "Dejuan", + "Delaney", + "Delbert", + "Delfina", + "Delia", + "Delilah", + "Dell", + "Della", + "Delmer", + "Delores", + "Delpha", + "Delphia", + "Delphine", + "Delta", + "Demarco", + "Demarcus", + "Demario", + "Demetris", + "Demetrius", + "Demond", + "Dena", + "Denis", + "Dennis", + "Deon", + "Deondre", + "Deontae", + "Deonte", + "Dereck", + "Derek", + "Derick", + "Deron", + "Derrick", + "Deshaun", + "Deshawn", + "Desiree", + "Desmond", + "Dessie", + "Destany", + "Destin", + "Destinee", + "Destiney", + "Destini", + "Destiny", + "Devan", + "Devante", + "Deven", + "Devin", + "Devon", + "Devonte", + "Devyn", + "Dewayne", + "Dewitt", + "Dexter", + "Diamond", + "Diana", + "Dianna", + "Diego", + "Dillan", + "Dillon", + "Dimitri", + "Dina", + "Dino", + "Dion", + "Dixie", + "Dock", + "Dolly", + "Dolores", + "Domenic", + "Domenica", + "Domenick", + "Domenico", + "Domingo", + "Dominic", + "Dominique", + "Don", + "Donald", + "Donato", + "Donavon", + "Donna", + "Donnell", + "Donnie", + "Donny", + "Dora", + "Dorcas", + "Dorian", + "Doris", + "Dorothea", + "Dorothy", + "Dorris", + "Dortha", + "Dorthy", + "Doug", + "Douglas", + "Dovie", + "Doyle", + "Drake", + "Drew", + "Duane", + "Dudley", + "Dulce", + "Duncan", + "Durward", + "Dustin", + "Dusty", + "Dwight", + "Dylan", + "Earl", + "Earlene", + "Earline", + "Earnest", + "Earnestine", + "Easter", + "Easton", + "Ebba", + "Ebony", + "Ed", + "Eda", + "Edd", + "Eddie", + "Eden", + "Edgar", + "Edgardo", + "Edison", + "Edmond", + "Edmund", + "Edna", + "Eduardo", + "Edward", + "Edwardo", + "Edwin", + "Edwina", + "Edyth", + "Edythe", + "Effie", + "Efrain", + "Efren", + "Eileen", + "Einar", + "Eino", + "Eladio", + "Elaina", + "Elbert", + "Elda", + "Eldon", + "Eldora", + "Eldred", + "Eldridge", + "Eleanora", + "Eleanore", + "Eleazar", + "Electa", + "Elena", + "Elenor", + "Elenora", + "Eleonore", + "Elfrieda", + "Eli", + "Elian", + "Eliane", + "Elias", + "Eliezer", + "Elijah", + "Elinor", + "Elinore", + "Elisa", + "Elisabeth", + "Elise", + "Eliseo", + "Elisha", + "Elissa", + "Eliza", + "Elizabeth", + "Ella", + "Ellen", + "Ellie", + "Elliot", + "Elliott", + "Ellis", + "Ellsworth", + "Elmer", + "Elmira", + "Elmo", + "Elmore", + "Elna", + "Elnora", + "Elody", + "Eloisa", + "Eloise", + "Elouise", + "Eloy", + "Elroy", + "Elsa", + "Else", + "Elsie", + "Elta", + "Elton", + "Elva", + "Elvera", + "Elvie", + "Elvis", + "Elwin", + "Elwyn", + "Elyse", + "Elyssa", + "Elza", + "Emanuel", + "Emelia", + "Emelie", + "Emely", + "Emerald", + "Emerson", + "Emery", + "Emie", + "Emil", + "Emile", + "Emilia", + "Emiliano", + "Emilie", + "Emilio", + "Emily", + "Emma", + "Emmalee", + "Emmanuel", + "Emmanuelle", + "Emmet", + "Emmett", + "Emmie", + "Emmitt", + "Emmy", + "Emory", + "Ena", + "Enid", + "Enoch", + "Enola", + "Enos", + "Enrico", + "Enrique", + "Ephraim", + "Era", + "Eriberto", + "Eric", + "Erica", + "Erich", + "Erick", + "Ericka", + "Erik", + "Erika", + "Erin", + "Erling", + "Erna", + "Ernest", + "Ernestina", + "Ernestine", + "Ernesto", + "Ernie", + "Ervin", + "Erwin", + "Eryn", + "Esmeralda", + "Esperanza", + "Esta", + "Esteban", + "Estefania", + "Estel", + "Estell", + "Estella", + "Estelle", + "Estevan", + "Esther", + "Estrella", + "Etha", + "Ethan", + "Ethel", + "Ethelyn", + "Ethyl", + "Ettie", + "Eudora", + "Eugene", + "Eugenia", + "Eula", + "Eulah", + "Eulalia", + "Euna", + "Eunice", + "Eusebio", + "Eva", + "Evalyn", + "Evan", + "Evangeline", + "Evans", + "Eve", + "Eveline", + "Evelyn", + "Everardo", + "Everett", + "Everette", + "Evert", + "Evie", + "Ewald", + "Ewell", + "Ezekiel", + "Ezequiel", + "Ezra", + "Fabian", + "Fabiola", + "Fae", + "Fannie", + "Fanny", + "Fatima", + "Faustino", + "Fausto", + "Favian", + "Fay", + "Faye", + "Federico", + "Felicia", + "Felicita", + "Felicity", + "Felipa", + "Felipe", + "Felix", + "Felton", + "Fermin", + "Fern", + "Fernando", + "Ferne", + "Fidel", + "Filiberto", + "Filomena", + "Finn", + "Fiona", + "Flavie", + "Flavio", + "Fleta", + "Fletcher", + "Flo", + "Florence", + "Florencio", + "Florian", + "Florida", + "Florine", + "Flossie", + "Floy", + "Floyd", + "Ford", + "Forest", + "Forrest", + "Foster", + "Frances", + "Francesca", + "Francesco", + "Francis", + "Francisca", + "Francisco", + "Franco", + "Frank", + "Frankie", + "Franz", + "Fred", + "Freda", + "Freddie", + "Freddy", + "Frederic", + "Frederick", + "Frederik", + "Frederique", + "Fredrick", + "Fredy", + "Freeda", + "Freeman", + "Freida", + "Frida", + "Frieda", + "Friedrich", + "Fritz", + "Furman", + "Gabe", + "Gabriel", + "Gabriella", + "Gabrielle", + "Gaetano", + "Gage", + "Gail", + "Gardner", + "Garett", + "Garfield", + "Garland", + "Garnet", + "Garnett", + "Garret", + "Garrett", + "Garrick", + "Garrison", + "Garry", + "Garth", + "Gaston", + "Gavin", + "Gay", + "Gayle", + "Gaylord", + "Gene", + "General", + "Genesis", + "Genevieve", + "Gennaro", + "Genoveva", + "Geo", + "Geoffrey", + "George", + "Georgette", + "Georgiana", + "Georgianna", + "Geovanni", + "Geovanny", + "Geovany", + "Gerald", + "Geraldine", + "Gerard", + "Gerardo", + "Gerda", + "Gerhard", + "Germaine", + "German", + "Gerry", + "Gerson", + "Gertrude", + "Gia", + "Gianni", + "Gideon", + "Gilbert", + "Gilberto", + "Gilda", + "Giles", + "Gillian", + "Gina", + "Gino", + "Giovani", + "Giovanna", + "Giovanni", + "Giovanny", + "Gisselle", + "Giuseppe", + "Gladyce", + "Gladys", + "Glen", + "Glenda", + "Glenna", + "Glennie", + "Gloria", + "Godfrey", + "Golda", + "Golden", + "Gonzalo", + "Gordon", + "Grace", + "Gracie", + "Graciela", + "Grady", + "Graham", + "Grant", + "Granville", + "Grayce", + "Grayson", + "Green", + "Greg", + "Gregg", + "Gregoria", + "Gregorio", + "Gregory", + "Greta", + "Gretchen", + "Greyson", + "Griffin", + "Grover", + "Guadalupe", + "Gudrun", + "Guido", + "Guillermo", + "Guiseppe", + "Gunnar", + "Gunner", + "Gus", + "Gussie", + "Gust", + "Gustave", + "Guy", + "Gwen", + "Gwendolyn", + "Hadley", + "Hailee", + "Hailey", + "Hailie", + "Hal", + "Haleigh", + "Haley", + "Halie", + "Halle", + "Hallie", + "Hank", + "Hanna", + "Hannah", + "Hans", + "Hardy", + "Harley", + "Harmon", + "Harmony", + "Harold", + "Harrison", + "Harry", + "Harvey", + "Haskell", + "Hassan", + "Hassie", + "Hattie", + "Haven", + "Hayden", + "Haylee", + "Hayley", + "Haylie", + "Hazel", + "Hazle", + "Heath", + "Heather", + "Heaven", + "Heber", + "Hector", + "Heidi", + "Helen", + "Helena", + "Helene", + "Helga", + "Hellen", + "Helmer", + "Heloise", + "Henderson", + "Henri", + "Henriette", + "Henry", + "Herbert", + "Herman", + "Hermann", + "Hermina", + "Herminia", + "Herminio", + "Hershel", + "Herta", + "Hertha", + "Hester", + "Hettie", + "Hilario", + "Hilbert", + "Hilda", + "Hildegard", + "Hillard", + "Hillary", + "Hilma", + "Hilton", + "Hipolito", + "Hiram", + "Hobart", + "Holden", + "Hollie", + "Hollis", + "Holly", + "Hope", + "Horace", + "Horacio", + "Hortense", + "Hosea", + "Houston", + "Howard", + "Howell", + "Hoyt", + "Hubert", + "Hudson", + "Hugh", + "Hulda", + "Humberto", + "Hunter", + "Hyman", + "Ian", + "Ibrahim", + "Icie", + "Ida", + "Idell", + "Idella", + "Ignacio", + "Ignatius", + "Ike", + "Ila", + "Ilene", + "Iliana", + "Ima", + "Imani", + "Imelda", + "Immanuel", + "Imogene", + "Ines", + "Irma", + "Irving", + "Irwin", + "Isaac", + "Isabel", + "Isabell", + "Isabella", + "Isabelle", + "Isac", + "Isadore", + "Isai", + "Isaiah", + "Isaias", + "Isidro", + "Ismael", + "Isobel", + "Isom", + "Israel", + "Issac", + "Itzel", + "Iva", + "Ivah", + "Ivory", + "Ivy", + "Izabella", + "Izaiah", + "Jabari", + "Jace", + "Jacey", + "Jacinthe", + "Jacinto", + "Jack", + "Jackeline", + "Jackie", + "Jacklyn", + "Jackson", + "Jacky", + "Jaclyn", + "Jacquelyn", + "Jacques", + "Jacynthe", + "Jada", + "Jade", + "Jaden", + "Jadon", + "Jadyn", + "Jaeden", + "Jaida", + "Jaiden", + "Jailyn", + "Jaime", + "Jairo", + "Jakayla", + "Jake", + "Jakob", + "Jaleel", + "Jalen", + "Jalon", + "Jalyn", + "Jamaal", + "Jamal", + "Jamar", + "Jamarcus", + "Jamel", + "Jameson", + "Jamey", + "Jamie", + "Jamil", + "Jamir", + "Jamison", + "Jammie", + "Jan", + "Jana", + "Janae", + "Jane", + "Janelle", + "Janessa", + "Janet", + "Janice", + "Janick", + "Janie", + "Janis", + "Janiya", + "Jannie", + "Jany", + "Jaquan", + "Jaquelin", + "Jaqueline", + "Jared", + "Jaren", + "Jarod", + "Jaron", + "Jarred", + "Jarrell", + "Jarret", + "Jarrett", + "Jarrod", + "Jarvis", + "Jasen", + "Jasmin", + "Jason", + "Jasper", + "Jaunita", + "Javier", + "Javon", + "Javonte", + "Jay", + "Jayce", + "Jaycee", + "Jayda", + "Jayde", + "Jayden", + "Jaydon", + "Jaylan", + "Jaylen", + "Jaylin", + "Jaylon", + "Jayme", + "Jayne", + "Jayson", + "Jazlyn", + "Jazmin", + "Jazmyn", + "Jazmyne", + "Jean", + "Jeanette", + "Jeanie", + "Jeanne", + "Jed", + "Jedediah", + "Jedidiah", + "Jeff", + "Jefferey", + "Jeffery", + "Jeffrey", + "Jeffry", + "Jena", + "Jenifer", + "Jennie", + "Jennifer", + "Jennings", + "Jennyfer", + "Jensen", + "Jerad", + "Jerald", + "Jeramie", + "Jeramy", + "Jerel", + "Jeremie", + "Jeremy", + "Jermain", + "Jermaine", + "Jermey", + "Jerod", + "Jerome", + "Jeromy", + "Jerrell", + "Jerrod", + "Jerrold", + "Jerry", + "Jess", + "Jesse", + "Jessica", + "Jessie", + "Jessika", + "Jessy", + "Jessyca", + "Jesus", + "Jett", + "Jettie", + "Jevon", + "Jewel", + "Jewell", + "Jillian", + "Jimmie", + "Jimmy", + "Jo", + "Joan", + "Joana", + "Joanie", + "Joanne", + "Joannie", + "Joanny", + "Joany", + "Joaquin", + "Jocelyn", + "Jodie", + "Jody", + "Joe", + "Joel", + "Joelle", + "Joesph", + "Joey", + "Johan", + "Johann", + "Johanna", + "Johathan", + "John", + "Johnathan", + "Johnathon", + "Johnnie", + "Johnny", + "Johnpaul", + "Johnson", + "Jolie", + "Jon", + "Jonas", + "Jonatan", + "Jonathan", + "Jonathon", + "Jordan", + "Jordane", + "Jordi", + "Jordon", + "Jordy", + "Jordyn", + "Jorge", + "Jose", + "Josefa", + "Josefina", + "Joseph", + "Josephine", + "Josh", + "Joshua", + "Joshuah", + "Josiah", + "Josiane", + "Josianne", + "Josie", + "Josue", + "Jovan", + "Jovani", + "Jovanny", + "Jovany", + "Joy", + "Joyce", + "Juana", + "Juanita", + "Judah", + "Judd", + "Jude", + "Judge", + "Judson", + "Judy", + "Jules", + "Julia", + "Julian", + "Juliana", + "Julianne", + "Julie", + "Julien", + "Juliet", + "Julio", + "Julius", + "June", + "Junior", + "Junius", + "Justen", + "Justice", + "Justina", + "Justine", + "Juston", + "Justus", + "Justyn", + "Juvenal", + "Juwan", + "Kacey", + "Kaci", + "Kacie", + "Kade", + "Kaden", + "Kadin", + "Kaela", + "Kaelyn", + "Kaia", + "Kailee", + "Kailey", + "Kailyn", + "Kaitlin", + "Kaitlyn", + "Kale", + "Kaleb", + "Kaleigh", + "Kaley", + "Kali", + "Kallie", + "Kameron", + "Kamille", + "Kamren", + "Kamron", + "Kamryn", + "Kane", + "Kara", + "Kareem", + "Karelle", + "Karen", + "Kari", + "Kariane", + "Karianne", + "Karina", + "Karine", + "Karl", + "Karlee", + "Karley", + "Karli", + "Karlie", + "Karolann", + "Karson", + "Kasandra", + "Kasey", + "Kassandra", + "Katarina", + "Katelin", + "Katelyn", + "Katelynn", + "Katharina", + "Katherine", + "Katheryn", + "Kathleen", + "Kathlyn", + "Kathryn", + "Kathryne", + "Katlyn", + "Katlynn", + "Katrina", + "Katrine", + "Kattie", + "Kavon", + "Kay", + "Kaya", + "Kaycee", + "Kayden", + "Kayla", + "Kaylah", + "Kaylee", + "Kayleigh", + "Kayley", + "Kayli", + "Kaylie", + "Kaylin", + "Keagan", + "Keanu", + "Keara", + "Keaton", + "Keegan", + "Keeley", + "Keely", + "Keenan", + "Keira", + "Keith", + "Kellen", + "Kelley", + "Kelli", + "Kellie", + "Kelly", + "Kelsi", + "Kelsie", + "Kelton", + "Kelvin", + "Ken", + "Kendall", + "Kendra", + "Kendrick", + "Kenna", + "Kennedi", + "Kennedy", + "Kenneth", + "Kennith", + "Kenny", + "Kenton", + "Kenya", + "Kenyatta", + "Kenyon", + "Keon", + "Keshaun", + "Keshawn", + "Keven", + "Kevin", + "Kevon", + "Keyon", + "Keyshawn", + "Khalid", + "Khalil", + "Kian", + "Kiana", + "Kianna", + "Kiara", + "Kiarra", + "Kiel", + "Kiera", + "Kieran", + "Kiley", + "Kim", + "Kimberly", + "King", + "Kip", + "Kira", + "Kirk", + "Kirsten", + "Kirstin", + "Kitty", + "Kobe", + "Koby", + "Kody", + "Kolby", + "Kole", + "Korbin", + "Korey", + "Kory", + "Kraig", + "Kris", + "Krista", + "Kristian", + "Kristin", + "Kristina", + "Kristofer", + "Kristoffer", + "Kristopher", + "Kristy", + "Krystal", + "Krystel", + "Krystina", + "Kurt", + "Kurtis", + "Kyla", + "Kyle", + "Kylee", + "Kyleigh", + "Kyler", + "Kylie", + "Kyra", + "Lacey", + "Lacy", + "Ladarius", + "Lafayette", + "Laila", + "Laisha", + "Lamar", + "Lambert", + "Lamont", + "Lance", + "Landen", + "Lane", + "Laney", + "Larissa", + "Laron", + "Larry", + "Larue", + "Laura", + "Laurel", + "Lauren", + "Laurence", + "Lauretta", + "Lauriane", + "Laurianne", + "Laurie", + "Laurine", + "Laury", + "Lauryn", + "Lavada", + "Lavern", + "Laverna", + "Laverne", + "Lavina", + "Lavinia", + "Lavon", + "Lavonne", + "Lawrence", + "Lawson", + "Layla", + "Layne", + "Lazaro", + "Lea", + "Leann", + "Leanna", + "Leanne", + "Leatha", + "Leda", + "Lee", + "Leif", + "Leila", + "Leilani", + "Lela", + "Lelah", + "Leland", + "Lelia", + "Lempi", + "Lemuel", + "Lenna", + "Lennie", + "Lenny", + "Lenora", + "Lenore", + "Leo", + "Leola", + "Leon", + "Leonard", + "Leonardo", + "Leone", + "Leonel", + "Leonie", + "Leonor", + "Leonora", + "Leopold", + "Leopoldo", + "Leora", + "Lera", + "Lesley", + "Leslie", + "Lesly", + "Lessie", + "Lester", + "Leta", + "Letha", + "Letitia", + "Levi", + "Lew", + "Lewis", + "Lexi", + "Lexie", + "Lexus", + "Lia", + "Liam", + "Liana", + "Libbie", + "Libby", + "Lila", + "Lilian", + "Liliana", + "Liliane", + "Lilla", + "Lillian", + "Lilliana", + "Lillie", + "Lilly", + "Lily", + "Lilyan", + "Lina", + "Lincoln", + "Linda", + "Lindsay", + "Lindsey", + "Linnea", + "Linnie", + "Linwood", + "Lionel", + "Lisa", + "Lisandro", + "Lisette", + "Litzy", + "Liza", + "Lizeth", + "Lizzie", + "Llewellyn", + "Lloyd", + "Logan", + "Lois", + "Lola", + "Lolita", + "Loma", + "Lon", + "London", + "Lonie", + "Lonnie", + "Lonny", + "Lonzo", + "Lora", + "Loraine", + "Loren", + "Lorena", + "Lorenz", + "Lorenza", + "Lorenzo", + "Lori", + "Lorine", + "Lorna", + "Lottie", + "Lou", + "Louie", + "Louisa", + "Lourdes", + "Louvenia", + "Lowell", + "Loy", + "Loyal", + "Loyce", + "Lucas", + "Luciano", + "Lucie", + "Lucienne", + "Lucile", + "Lucinda", + "Lucio", + "Lucious", + "Lucius", + "Lucy", + "Ludie", + "Ludwig", + "Lue", + "Luella", + "Luigi", + "Luis", + "Luisa", + "Lukas", + "Lula", + "Lulu", + "Luna", + "Lupe", + "Lura", + "Lurline", + "Luther", + "Luz", + "Lyda", + "Lydia", + "Lyla", + "Lynn", + "Lyric", + "Lysanne", + "Mabel", + "Mabelle", + "Mable", + "Mac", + "Macey", + "Maci", + "Macie", + "Mack", + "Mackenzie", + "Macy", + "Madaline", + "Madalyn", + "Maddison", + "Madeline", + "Madelyn", + "Madelynn", + "Madge", + "Madie", + "Madilyn", + "Madisen", + "Madison", + "Madisyn", + "Madonna", + "Madyson", + "Mae", + "Maegan", + "Maeve", + "Mafalda", + "Magali", + "Magdalen", + "Magdalena", + "Maggie", + "Magnolia", + "Magnus", + "Maia", + "Maida", + "Maiya", + "Major", + "Makayla", + "Makenna", + "Makenzie", + "Malachi", + "Malcolm", + "Malika", + "Malinda", + "Mallie", + "Mallory", + "Malvina", + "Mandy", + "Manley", + "Manuel", + "Manuela", + "Mara", + "Marc", + "Marcel", + "Marcelina", + "Marcelino", + "Marcella", + "Marcelle", + "Marcellus", + "Marcelo", + "Marcia", + "Marco", + "Marcos", + "Marcus", + "Margaret", + "Margarete", + "Margarett", + "Margaretta", + "Margarette", + "Margarita", + "Marge", + "Margie", + "Margot", + "Margret", + "Marguerite", + "Maria", + "Mariah", + "Mariam", + "Marian", + "Mariana", + "Mariane", + "Marianna", + "Marianne", + "Mariano", + "Maribel", + "Marie", + "Mariela", + "Marielle", + "Marietta", + "Marilie", + "Marilou", + "Marilyne", + "Marina", + "Mario", + "Marion", + "Marisa", + "Marisol", + "Maritza", + "Marjolaine", + "Marjorie", + "Marjory", + "Mark", + "Markus", + "Marlee", + "Marlen", + "Marlene", + "Marley", + "Marlin", + "Marlon", + "Marques", + "Marquis", + "Marquise", + "Marshall", + "Marta", + "Martin", + "Martina", + "Martine", + "Marty", + "Marvin", + "Mary", + "Maryam", + "Maryjane", + "Maryse", + "Mason", + "Mateo", + "Mathew", + "Mathias", + "Mathilde", + "Matilda", + "Matilde", + "Matt", + "Matteo", + "Mattie", + "Maud", + "Maude", + "Maudie", + "Maureen", + "Maurice", + "Mauricio", + "Maurine", + "Maverick", + "Mavis", + "Max", + "Maxie", + "Maxime", + "Maximilian", + "Maximillia", + "Maximillian", + "Maximo", + "Maximus", + "Maxine", + "Maxwell", + "May", + "Maya", + "Maybell", + "Maybelle", + "Maye", + "Maymie", + "Maynard", + "Mayra", + "Mazie", + "Mckayla", + "Mckenna", + "Mckenzie", + "Meagan", + "Meaghan", + "Meda", + "Megane", + "Meggie", + "Meghan", + "Mekhi", + "Melany", + "Melba", + "Melisa", + "Melissa", + "Mellie", + "Melody", + "Melvin", + "Melvina", + "Melyna", + "Melyssa", + "Mercedes", + "Meredith", + "Merl", + "Merle", + "Merlin", + "Merritt", + "Mertie", + "Mervin", + "Meta", + "Mia", + "Micaela", + "Micah", + "Michael", + "Michaela", + "Michale", + "Micheal", + "Michel", + "Michele", + "Michelle", + "Miguel", + "Mikayla", + "Mike", + "Mikel", + "Milan", + "Miles", + "Milford", + "Miller", + "Millie", + "Milo", + "Milton", + "Mina", + "Minerva", + "Minnie", + "Miracle", + "Mireille", + "Mireya", + "Misael", + "Missouri", + "Misty", + "Mitchel", + "Mitchell", + "Mittie", + "Modesta", + "Modesto", + "Mohamed", + "Mohammad", + "Mohammed", + "Moises", + "Mollie", + "Molly", + "Mona", + "Monica", + "Monique", + "Monroe", + "Monserrat", + "Monserrate", + "Montana", + "Monte", + "Monty", + "Morgan", + "Moriah", + "Morris", + "Mortimer", + "Morton", + "Mose", + "Moses", + "Moshe", + "Mossie", + "Mozell", + "Mozelle", + "Muhammad", + "Muriel", + "Murl", + "Murphy", + "Murray", + "Mustafa", + "Mya", + "Myah", + "Mylene", + "Myles", + "Myra", + "Myriam", + "Myrl", + "Myrna", + "Myron", + "Myrtice", + "Myrtie", + "Myrtis", + "Myrtle", + "Nadia", + "Nakia", + "Name", + "Nannie", + "Naomi", + "Naomie", + "Napoleon", + "Narciso", + "Nash", + "Nasir", + "Nat", + "Natalia", + "Natalie", + "Natasha", + "Nathan", + "Nathanael", + "Nathanial", + "Nathaniel", + "Nathen", + "Nayeli", + "Neal", + "Ned", + "Nedra", + "Neha", + "Neil", + "Nelda", + "Nella", + "Nelle", + "Nellie", + "Nels", + "Nelson", + "Neoma", + "Nestor", + "Nettie", + "Neva", + "Newell", + "Newton", + "Nia", + "Nicholas", + "Nicholaus", + "Nichole", + "Nick", + "Nicklaus", + "Nickolas", + "Nico", + "Nicola", + "Nicolas", + "Nicole", + "Nicolette", + "Nigel", + "Nikita", + "Nikki", + "Nikko", + "Niko", + "Nikolas", + "Nils", + "Nina", + "Noah", + "Noble", + "Noe", + "Noel", + "Noelia", + "Noemi", + "Noemie", + "Noemy", + "Nola", + "Nolan", + "Nona", + "Nora", + "Norbert", + "Norberto", + "Norene", + "Norma", + "Norris", + "Norval", + "Norwood", + "Nova", + "Novella", + "Nya", + "Nyah", + "Nyasia", + "Obie", + "Oceane", + "Ocie", + "Octavia", + "Oda", + "Odell", + "Odessa", + "Odie", + "Ofelia", + "Okey", + "Ola", + "Olaf", + "Ole", + "Olen", + "Oleta", + "Olga", + "Olin", + "Oliver", + "Ollie", + "Oma", + "Omari", + "Omer", + "Ona", + "Onie", + "Opal", + "Ophelia", + "Ora", + "Oral", + "Oran", + "Oren", + "Orie", + "Orin", + "Orion", + "Orland", + "Orlando", + "Orlo", + "Orpha", + "Orrin", + "Orval", + "Orville", + "Osbaldo", + "Osborne", + "Oscar", + "Osvaldo", + "Oswald", + "Oswaldo", + "Otha", + "Otho", + "Otilia", + "Otis", + "Ottilie", + "Ottis", + "Otto", + "Ova", + "Owen", + "Ozella", + "Pablo", + "Paige", + "Palma", + "Pamela", + "Pansy", + "Paolo", + "Paris", + "Parker", + "Pascale", + "Pasquale", + "Pat", + "Patience", + "Patricia", + "Patrick", + "Patsy", + "Pattie", + "Paul", + "Paula", + "Pauline", + "Paxton", + "Payton", + "Pearl", + "Pearlie", + "Pearline", + "Pedro", + "Peggie", + "Penelope", + "Percival", + "Percy", + "Perry", + "Pete", + "Peter", + "Petra", + "Peyton", + "Philip", + "Phoebe", + "Phyllis", + "Pierce", + "Pierre", + "Pietro", + "Pink", + "Pinkie", + "Piper", + "Polly", + "Porter", + "Precious", + "Presley", + "Preston", + "Price", + "Prince", + "Princess", + "Priscilla", + "Providenci", + "Prudence", + "Queen", + "Queenie", + "Quentin", + "Quincy", + "Quinn", + "Quinten", + "Quinton", + "Rachael", + "Rachel", + "Rachelle", + "Rae", + "Raegan", + "Rafael", + "Rafaela", + "Raheem", + "Rahsaan", + "Rahul", + "Raina", + "Raleigh", + "Ralph", + "Ramiro", + "Ramon", + "Ramona", + "Randal", + "Randall", + "Randi", + "Randy", + "Ransom", + "Raoul", + "Raphael", + "Raphaelle", + "Raquel", + "Rashad", + "Rashawn", + "Rasheed", + "Raul", + "Raven", + "Ray", + "Raymond", + "Raymundo", + "Reagan", + "Reanna", + "Reba", + "Rebeca", + "Rebecca", + "Rebeka", + "Rebekah", + "Reece", + "Reed", + "Reese", + "Regan", + "Reggie", + "Reginald", + "Reid", + "Reilly", + "Reina", + "Reinhold", + "Remington", + "Rene", + "Renee", + "Ressie", + "Reta", + "Retha", + "Retta", + "Reuben", + "Reva", + "Rex", + "Rey", + "Reyes", + "Reymundo", + "Reyna", + "Reynold", + "Rhea", + "Rhett", + "Rhianna", + "Rhiannon", + "Rhoda", + "Ricardo", + "Richard", + "Richie", + "Richmond", + "Rick", + "Rickey", + "Rickie", + "Ricky", + "Rico", + "Rigoberto", + "Riley", + "Rita", + "River", + "Robb", + "Robbie", + "Robert", + "Roberta", + "Roberto", + "Robin", + "Robyn", + "Rocio", + "Rocky", + "Rod", + "Roderick", + "Rodger", + "Rodolfo", + "Rodrick", + "Rodrigo", + "Roel", + "Rogelio", + "Roger", + "Rogers", + "Rolando", + "Rollin", + "Roma", + "Romaine", + "Roman", + "Ron", + "Ronaldo", + "Ronny", + "Roosevelt", + "Rory", + "Rosa", + "Rosalee", + "Rosalia", + "Rosalind", + "Rosalinda", + "Rosalyn", + "Rosamond", + "Rosanna", + "Rosario", + "Roscoe", + "Rose", + "Rosella", + "Roselyn", + "Rosemarie", + "Rosemary", + "Rosendo", + "Rosetta", + "Rosie", + "Rosina", + "Roslyn", + "Ross", + "Rossie", + "Rowan", + "Rowena", + "Rowland", + "Roxane", + "Roxanne", + "Roy", + "Royal", + "Royce", + "Rozella", + "Ruben", + "Rubie", + "Ruby", + "Rubye", + "Rudolph", + "Rudy", + "Rupert", + "Russ", + "Russel", + "Russell", + "Rusty", + "Ruth", + "Ruthe", + "Ruthie", + "Ryan", + "Ryann", + "Ryder", + "Rylan", + "Rylee", + "Ryleigh", + "Ryley", + "Sabina", + "Sabrina", + "Sabryna", + "Sadie", + "Sadye", + "Sage", + "Saige", + "Sallie", + "Sally", + "Salma", + "Salvador", + "Salvatore", + "Sam", + "Samanta", + "Samantha", + "Samara", + "Samir", + "Sammie", + "Sammy", + "Samson", + "Sandra", + "Sandrine", + "Sandy", + "Sanford", + "Santa", + "Santiago", + "Santina", + "Santino", + "Santos", + "Sarah", + "Sarai", + "Sarina", + "Sasha", + "Saul", + "Savanah", + "Savanna", + "Savannah", + "Savion", + "Scarlett", + "Schuyler", + "Scot", + "Scottie", + "Scotty", + "Seamus", + "Sean", + "Sebastian", + "Sedrick", + "Selena", + "Selina", + "Selmer", + "Serena", + "Serenity", + "Seth", + "Shad", + "Shaina", + "Shakira", + "Shana", + "Shane", + "Shanel", + "Shanelle", + "Shania", + "Shanie", + "Shaniya", + "Shanna", + "Shannon", + "Shanny", + "Shanon", + "Shany", + "Sharon", + "Shaun", + "Shawn", + "Shawna", + "Shaylee", + "Shayna", + "Shayne", + "Shea", + "Sheila", + "Sheldon", + "Shemar", + "Sheridan", + "Sherman", + "Sherwood", + "Shirley", + "Shyann", + "Shyanne", + "Sibyl", + "Sid", + "Sidney", + "Sienna", + "Sierra", + "Sigmund", + "Sigrid", + "Sigurd", + "Silas", + "Sim", + "Simeon", + "Simone", + "Sincere", + "Sister", + "Skye", + "Skyla", + "Skylar", + "Sofia", + "Soledad", + "Solon", + "Sonia", + "Sonny", + "Sonya", + "Sophia", + "Sophie", + "Spencer", + "Stacey", + "Stacy", + "Stan", + "Stanford", + "Stanley", + "Stanton", + "Stefan", + "Stefanie", + "Stella", + "Stephan", + "Stephania", + "Stephanie", + "Stephany", + "Stephen", + "Stephon", + "Sterling", + "Steve", + "Stevie", + "Stewart", + "Stone", + "Stuart", + "Summer", + "Sunny", + "Susan", + "Susana", + "Susanna", + "Susie", + "Suzanne", + "Sven", + "Syble", + "Sydnee", + "Sydney", + "Sydni", + "Sydnie", + "Sylvan", + "Sylvester", + "Sylvia", + "Tabitha", + "Tad", + "Talia", + "Talon", + "Tamara", + "Tamia", + "Tania", + "Tanner", + "Tanya", + "Tara", + "Taryn", + "Tate", + "Tatum", + "Tatyana", + "Taurean", + "Tavares", + "Taya", + "Taylor", + "Teagan", + "Ted", + "Telly", + "Terence", + "Teresa", + "Terrance", + "Terrell", + "Terrence", + "Terrill", + "Terry", + "Tess", + "Tessie", + "Tevin", + "Thad", + "Thaddeus", + "Thalia", + "Thea", + "Thelma", + "Theo", + "Theodora", + "Theodore", + "Theresa", + "Therese", + "Theresia", + "Theron", + "Thomas", + "Thora", + "Thurman", + "Tia", + "Tiana", + "Tianna", + "Tiara", + "Tierra", + "Tiffany", + "Tillman", + "Timmothy", + "Timmy", + "Timothy", + "Tina", + "Tito", + "Titus", + "Tobin", + "Toby", + "Tod", + "Tom", + "Tomas", + "Tomasa", + "Tommie", + "Toney", + "Toni", + "Tony", + "Torey", + "Torrance", + "Torrey", + "Toy", + "Trace", + "Tracey", + "Tracy", + "Travis", + "Travon", + "Tre", + "Tremaine", + "Tremayne", + "Trent", + "Trenton", + "Tressa", + "Tressie", + "Treva", + "Trever", + "Trevion", + "Trevor", + "Trey", + "Trinity", + "Trisha", + "Tristian", + "Tristin", + "Triston", + "Troy", + "Trudie", + "Trycia", + "Trystan", + "Turner", + "Twila", + "Tyler", + "Tyra", + "Tyree", + "Tyreek", + "Tyrel", + "Tyrell", + "Tyrese", + "Tyrique", + "Tyshawn", + "Tyson", + "Ubaldo", + "Ulices", + "Ulises", + "Una", + "Unique", + "Urban", + "Uriah", + "Uriel", + "Ursula", + "Vada", + "Valentin", + "Valentina", + "Valentine", + "Valerie", + "Vallie", + "Van", + "Vance", + "Vanessa", + "Vaughn", + "Veda", + "Velda", + "Vella", + "Velma", + "Velva", + "Vena", + "Verda", + "Verdie", + "Vergie", + "Verla", + "Verlie", + "Vern", + "Verna", + "Verner", + "Vernice", + "Vernie", + "Vernon", + "Verona", + "Veronica", + "Vesta", + "Vicenta", + "Vicente", + "Vickie", + "Vicky", + "Victor", + "Victoria", + "Vida", + "Vidal", + "Vilma", + "Vince", + "Vincent", + "Vincenza", + "Vincenzo", + "Vinnie", + "Viola", + "Violet", + "Violette", + "Virgie", + "Virgil", + "Virginia", + "Virginie", + "Vita", + "Vito", + "Viva", + "Vivian", + "Viviane", + "Vivianne", + "Vivien", + "Vivienne", + "Vladimir", + "Wade", + "Waino", + "Waldo", + "Walker", + "Wallace", + "Walter", + "Walton", + "Wanda", + "Ward", + "Warren", + "Watson", + "Wava", + "Waylon", + "Wayne", + "Webster", + "Weldon", + "Wellington", + "Wendell", + "Wendy", + "Werner", + "Westley", + "Weston", + "Whitney", + "Wilber", + "Wilbert", + "Wilburn", + "Wiley", + "Wilford", + "Wilfred", + "Wilfredo", + "Wilfrid", + "Wilhelm", + "Wilhelmine", + "Will", + "Willa", + "Willard", + "William", + "Willie", + "Willis", + "Willow", + "Willy", + "Wilma", + "Wilmer", + "Wilson", + "Wilton", + "Winfield", + "Winifred", + "Winnifred", + "Winona", + "Winston", + "Woodrow", + "Wyatt", + "Wyman", + "Xander", + "Xavier", + "Xzavier", + "Yadira", + "Yasmeen", + "Yasmin", + "Yasmine", + "Yazmin", + "Yesenia", + "Yessenia", + "Yolanda", + "Yoshiko", + "Yvette", + "Yvonne", + "Zachariah", + "Zachary", + "Zachery", + "Zack", + "Zackary", + "Zackery", + "Zakary", + "Zander", + "Zane", + "Zaria", + "Zechariah", + "Zelda", + "Zella", + "Zelma", + "Zena", + "Zetta", + "Zion", + "Zita", + "Zoe", + "Zoey", + "Zoie", + "Zoila", + "Zola", + "Zora", + "Zula" + ]; + +},{}],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":170,"./last_name":172,"./name":173,"./prefix":174,"./suffix":175,"./title":176}],172:[function(require,module,exports){ + module["exports"] = [ + "Abbott", + "Abernathy", + "Abshire", + "Adams", + "Altenwerth", + "Anderson", + "Ankunding", + "Armstrong", + "Auer", + "Aufderhar", + "Bahringer", + "Bailey", + "Balistreri", + "Barrows", + "Bartell", + "Bartoletti", + "Barton", + "Bashirian", + "Batz", + "Bauch", + "Baumbach", + "Bayer", + "Beahan", + "Beatty", + "Bechtelar", + "Becker", + "Bednar", + "Beer", + "Beier", + "Berge", + "Bergnaum", + "Bergstrom", + "Bernhard", + "Bernier", + "Bins", + "Blanda", + "Blick", + "Block", + "Bode", + "Boehm", + "Bogan", + "Bogisich", + "Borer", + "Bosco", + "Botsford", + "Boyer", + "Boyle", + "Bradtke", + "Brakus", + "Braun", + "Breitenberg", + "Brekke", + "Brown", + "Bruen", + "Buckridge", + "Carroll", + "Carter", + "Cartwright", + "Casper", + "Cassin", + "Champlin", + "Christiansen", + "Cole", + "Collier", + "Collins", + "Conn", + "Connelly", + "Conroy", + "Considine", + "Corkery", + "Cormier", + "Corwin", + "Cremin", + "Crist", + "Crona", + "Cronin", + "Crooks", + "Cruickshank", + "Cummerata", + "Cummings", + "Dach", + "D'Amore", + "Daniel", + "Dare", + "Daugherty", + "Davis", + "Deckow", + "Denesik", + "Dibbert", + "Dickens", + "Dicki", + "Dickinson", + "Dietrich", + "Donnelly", + "Dooley", + "Douglas", + "Doyle", + "DuBuque", + "Durgan", + "Ebert", + "Effertz", + "Eichmann", + "Emard", + "Emmerich", + "Erdman", + "Ernser", + "Fadel", + "Fahey", + "Farrell", + "Fay", + "Feeney", + "Feest", + "Feil", + "Ferry", + "Fisher", + "Flatley", + "Frami", + "Franecki", + "Friesen", + "Fritsch", + "Funk", + "Gaylord", + "Gerhold", + "Gerlach", + "Gibson", + "Gislason", + "Gleason", + "Gleichner", + "Glover", + "Goldner", + "Goodwin", + "Gorczany", + "Gottlieb", + "Goyette", + "Grady", + "Graham", + "Grant", + "Green", + "Greenfelder", + "Greenholt", + "Grimes", + "Gulgowski", + "Gusikowski", + "Gutkowski", + "Gutmann", + "Haag", + "Hackett", + "Hagenes", + "Hahn", + "Haley", + "Halvorson", + "Hamill", + "Hammes", + "Hand", + "Hane", + "Hansen", + "Harber", + "Harris", + "Hartmann", + "Harvey", + "Hauck", + "Hayes", + "Heaney", + "Heathcote", + "Hegmann", + "Heidenreich", + "Heller", + "Herman", + "Hermann", + "Hermiston", + "Herzog", + "Hessel", + "Hettinger", + "Hickle", + "Hilll", + "Hills", + "Hilpert", + "Hintz", + "Hirthe", + "Hodkiewicz", + "Hoeger", + "Homenick", + "Hoppe", + "Howe", + "Howell", + "Hudson", + "Huel", + "Huels", + "Hyatt", + "Jacobi", + "Jacobs", + "Jacobson", + "Jakubowski", + "Jaskolski", + "Jast", + "Jenkins", + "Jerde", + "Johns", + "Johnson", + "Johnston", + "Jones", + "Kassulke", + "Kautzer", + "Keebler", + "Keeling", + "Kemmer", + "Kerluke", + "Kertzmann", + "Kessler", + "Kiehn", + "Kihn", + "Kilback", + "King", + "Kirlin", + "Klein", + "Kling", + "Klocko", + "Koch", + "Koelpin", + "Koepp", + "Kohler", + "Konopelski", + "Koss", + "Kovacek", + "Kozey", + "Krajcik", + "Kreiger", + "Kris", + "Kshlerin", + "Kub", + "Kuhic", + "Kuhlman", + "Kuhn", + "Kulas", + "Kunde", + "Kunze", + "Kuphal", + "Kutch", + "Kuvalis", + "Labadie", + "Lakin", + "Lang", + "Langosh", + "Langworth", + "Larkin", + "Larson", + "Leannon", + "Lebsack", + "Ledner", + "Leffler", + "Legros", + "Lehner", + "Lemke", + "Lesch", + "Leuschke", + "Lind", + "Lindgren", + "Littel", + "Little", + "Lockman", + "Lowe", + "Lubowitz", + "Lueilwitz", + "Luettgen", + "Lynch", + "Macejkovic", + "MacGyver", + "Maggio", + "Mann", + "Mante", + "Marks", + "Marquardt", + "Marvin", + "Mayer", + "Mayert", + "McClure", + "McCullough", + "McDermott", + "McGlynn", + "McKenzie", + "McLaughlin", + "Medhurst", + "Mertz", + "Metz", + "Miller", + "Mills", + "Mitchell", + "Moen", + "Mohr", + "Monahan", + "Moore", + "Morar", + "Morissette", + "Mosciski", + "Mraz", + "Mueller", + "Muller", + "Murazik", + "Murphy", + "Murray", + "Nader", + "Nicolas", + "Nienow", + "Nikolaus", + "Nitzsche", + "Nolan", + "Oberbrunner", + "O'Connell", + "O'Conner", + "O'Hara", + "O'Keefe", + "O'Kon", + "Okuneva", + "Olson", + "Ondricka", + "O'Reilly", + "Orn", + "Ortiz", + "Osinski", + "Pacocha", + "Padberg", + "Pagac", + "Parisian", + "Parker", + "Paucek", + "Pfannerstill", + "Pfeffer", + "Pollich", + "Pouros", + "Powlowski", + "Predovic", + "Price", + "Prohaska", + "Prosacco", + "Purdy", + "Quigley", + "Quitzon", + "Rath", + "Ratke", + "Rau", + "Raynor", + "Reichel", + "Reichert", + "Reilly", + "Reinger", + "Rempel", + "Renner", + "Reynolds", + "Rice", + "Rippin", + "Ritchie", + "Robel", + "Roberts", + "Rodriguez", + "Rogahn", + "Rohan", + "Rolfson", + "Romaguera", + "Roob", + "Rosenbaum", + "Rowe", + "Ruecker", + "Runolfsdottir", + "Runolfsson", + "Runte", + "Russel", + "Rutherford", + "Ryan", + "Sanford", + "Satterfield", + "Sauer", + "Sawayn", + "Schaden", + "Schaefer", + "Schamberger", + "Schiller", + "Schimmel", + "Schinner", + "Schmeler", + "Schmidt", + "Schmitt", + "Schneider", + "Schoen", + "Schowalter", + "Schroeder", + "Schulist", + "Schultz", + "Schumm", + "Schuppe", + "Schuster", + "Senger", + "Shanahan", + "Shields", + "Simonis", + "Sipes", + "Skiles", + "Smith", + "Smitham", + "Spencer", + "Spinka", + "Sporer", + "Stamm", + "Stanton", + "Stark", + "Stehr", + "Steuber", + "Stiedemann", + "Stokes", + "Stoltenberg", + "Stracke", + "Streich", + "Stroman", + "Strosin", + "Swaniawski", + "Swift", + "Terry", + "Thiel", + "Thompson", + "Tillman", + "Torp", + "Torphy", + "Towne", + "Toy", + "Trantow", + "Tremblay", + "Treutel", + "Tromp", + "Turcotte", + "Turner", + "Ullrich", + "Upton", + "Vandervort", + "Veum", + "Volkman", + "Von", + "VonRueden", + "Waelchi", + "Walker", + "Walsh", + "Walter", + "Ward", + "Waters", + "Watsica", + "Weber", + "Wehner", + "Weimann", + "Weissnat", + "Welch", + "West", + "White", + "Wiegand", + "Wilderman", + "Wilkinson", + "Will", + "Williamson", + "Willms", + "Windler", + "Wintheiser", + "Wisoky", + "Wisozk", + "Witting", + "Wiza", + "Wolf", + "Wolff", + "Wuckert", + "Wunsch", + "Wyman", + "Yost", + "Yundt", + "Zboncak", + "Zemlak", + "Ziemann", + "Zieme", + "Zulauf" + ]; + +},{}],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}" + ]; + +},{}],174:[function(require,module,exports){ + module["exports"] = [ + "Mr.", + "Mrs.", + "Ms.", + "Miss", + "Dr." + ]; + +},{}],175:[function(require,module,exports){ + module["exports"] = [ + "Jr.", + "Sr.", + "I", + "II", + "III", + "IV", + "V", + "MD", + "DDS", + "PhD", + "DVM" + ]; + +},{}],176:[function(require,module,exports){ + module["exports"] = { + "descriptor": [ + "Lead", + "Senior", + "Direct", + "Corporate", + "Dynamic", + "Future", + "Product", + "National", + "Regional", + "District", + "Central", + "Global", + "Customer", + "Investor", + "Dynamic", + "International", + "Legacy", + "Forward", + "Internal", + "Human", + "Chief", + "Principal" + ], + "level": [ + "Solutions", + "Program", + "Brand", + "Security", + "Research", + "Marketing", + "Directives", + "Implementation", + "Integration", + "Functionality", + "Response", + "Paradigm", + "Tactics", + "Identity", + "Markets", + "Group", + "Division", + "Applications", + "Optimization", + "Operations", + "Infrastructure", + "Intranet", + "Communications", + "Web", + "Branding", + "Quality", + "Assurance", + "Mobility", + "Accounts", + "Data", + "Creative", + "Configuration", + "Accountability", + "Interactions", + "Factors", + "Usability", + "Metrics" + ], + "job": [ + "Supervisor", + "Associate", + "Executive", + "Liason", + "Officer", + "Manager", + "Engineer", + "Specialist", + "Director", + "Coordinator", + "Administrator", + "Architect", + "Analyst", + "Designer", + "Planner", + "Orchestrator", + "Technician", + "Developer", + "Producer", + "Consultant", + "Assistant", + "Facilitator", + "Agent", + "Representative", + "Strategist" + ] + }; + +},{}],177:[function(require,module,exports){ + module["exports"] = [ + "###-###-####", + "(###) ###-####", + "1-###-###-####", + "###.###.####", + "###-###-####", + "(###) ###-####", + "1-###-###-####", + "###.###.####", + "###-###-#### x###", + "(###) ###-#### x###", + "1-###-###-#### x###", + "###.###.#### x###", + "###-###-#### x####", + "(###) ###-#### x####", + "1-###-###-#### x####", + "###.###.#### x####", + "###-###-#### x#####", + "(###) ###-#### x#####", + "1-###-###-#### x#####", + "###.###.#### x#####" + ]; + +},{}],178:[function(require,module,exports){ + arguments[4][47][0].apply(exports,arguments) +},{"./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", + "birds", + "buffalo", + "cats", + "chickens", + "cattle", + "dogs", + "dolphins", + "ducks", + "elephants", + "fishes", + "foxes", + "frogs", + "geese", + "goats", + "horses", + "kangaroos", + "lions", + "monkeys", + "owls", + "oxen", + "penguins", + "people", + "pigs", + "rabbits", + "sheep", + "tigers", + "whales", + "wolves", + "zebras", + "banshees", + "crows", + "black cats", + "chimeras", + "ghosts", + "conspirators", + "dragons", + "dwarves", + "elves", + "enchanters", + "exorcists", + "sons", + "foes", + "giants", + "gnomes", + "goblins", + "gooses", + "griffins", + "lycanthropes", + "nemesis", + "ogres", + "oracles", + "prophets", + "sorcerors", + "spiders", + "spirits", + "vampires", + "warlocks", + "vixens", + "werewolves", + "witches", + "worshipers", + "zombies", + "druids" + ]; + +},{}],182:[function(require,module,exports){ + var team = {}; + module['exports'] = team; + team.creature = require("./creature"); + team.name = require("./name"); + +},{"./creature":181,"./name":183}],183:[function(require,module,exports){ + module["exports"] = [ + "#{Address.state} #{creature}" + ]; + +},{}],184:[function(require,module,exports){ + module["exports"] = [ + "####", + "###", + "##" + ]; + +},{}],185:[function(require,module,exports){ + module["exports"] = [ + "Australia" + ]; + +},{}],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":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###" + ]; + +},{}],188:[function(require,module,exports){ + module["exports"] = [ + "New South Wales", + "Queensland", + "Northern Territory", + "South Australia", + "Western Australia", + "Tasmania", + "Australian Capital Territory", + "Victoria" + ]; + +},{}],189:[function(require,module,exports){ + module["exports"] = [ + "NSW", + "QLD", + "NT", + "SA", + "WA", + "TAS", + "ACT", + "VIC" + ]; + +},{}],190:[function(require,module,exports){ + module["exports"] = [ + "Avenue", + "Boulevard", + "Circle", + "Circuit", + "Court", + "Crescent", + "Crest", + "Drive", + "Estate Dr", + "Grove", + "Hill", + "Island", + "Junction", + "Knoll", + "Lane", + "Loop", + "Mall", + "Manor", + "Meadow", + "Mews", + "Parade", + "Parkway", + "Pass", + "Place", + "Plaza", + "Ridge", + "Road", + "Run", + "Square", + "Station St", + "Street", + "Summit", + "Terrace", + "Track", + "Trail", + "View Rd", + "Way" + ]; + +},{}],191:[function(require,module,exports){ + var company = {}; + module['exports'] = company; + company.suffix = require("./suffix"); + +},{"./suffix":192}],192:[function(require,module,exports){ + module["exports"] = [ + "Pty Ltd", + "and Sons", + "Corp", + "Group", + "Brothers", + "Partners" + ]; + +},{}],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":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" + ]; + +},{}],195:[function(require,module,exports){ + arguments[4][88][0].apply(exports,arguments) +},{"./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", + "Thomas", + "Lachlan", + "Cooper", + "Noah", + "Ethan", + "Lucas", + "James", + "Samuel", + "Jacob", + "Liam", + "Alexander", + "Benjamin", + "Max", + "Isaac", + "Daniel", + "Riley", + "Ryan", + "Charlie", + "Tyler", + "Jake", + "Matthew", + "Xavier", + "Harry", + "Jayden", + "Nicholas", + "Harrison", + "Levi", + "Luke", + "Adam", + "Henry", + "Aiden", + "Dylan", + "Oscar", + "Michael", + "Jackson", + "Logan", + "Joseph", + "Blake", + "Nathan", + "Connor", + "Elijah", + "Nate", + "Archie", + "Bailey", + "Marcus", + "Cameron", + "Jordan", + "Zachary", + "Caleb", + "Hunter", + "Ashton", + "Toby", + "Aidan", + "Hayden", + "Mason", + "Hamish", + "Edward", + "Angus", + "Eli", + "Sebastian", + "Christian", + "Patrick", + "Andrew", + "Anthony", + "Luca", + "Kai", + "Beau", + "Alex", + "George", + "Callum", + "Finn", + "Zac", + "Mitchell", + "Jett", + "Jesse", + "Gabriel", + "Leo", + "Declan", + "Charles", + "Jasper", + "Jonathan", + "Aaron", + "Hugo", + "David", + "Christopher", + "Chase", + "Owen", + "Justin", + "Ali", + "Darcy", + "Lincoln", + "Cody", + "Phoenix", + "Sam", + "John", + "Joel", + "Isabella", + "Ruby", + "Chloe", + "Olivia", + "Charlotte", + "Mia", + "Lily", + "Emily", + "Ella", + "Sienna", + "Sophie", + "Amelia", + "Grace", + "Ava", + "Zoe", + "Emma", + "Sophia", + "Matilda", + "Hannah", + "Jessica", + "Lucy", + "Georgia", + "Sarah", + "Abigail", + "Zara", + "Eva", + "Scarlett", + "Jasmine", + "Chelsea", + "Lilly", + "Ivy", + "Isla", + "Evie", + "Isabelle", + "Maddison", + "Layla", + "Summer", + "Annabelle", + "Alexis", + "Elizabeth", + "Bella", + "Holly", + "Lara", + "Madison", + "Alyssa", + "Maya", + "Tahlia", + "Claire", + "Hayley", + "Imogen", + "Jade", + "Ellie", + "Sofia", + "Addison", + "Molly", + "Phoebe", + "Alice", + "Savannah", + "Gabriella", + "Kayla", + "Mikayla", + "Abbey", + "Eliza", + "Willow", + "Alexandra", + "Poppy", + "Samantha", + "Stella", + "Amy", + "Amelie", + "Anna", + "Piper", + "Gemma", + "Isabel", + "Victoria", + "Stephanie", + "Caitlin", + "Heidi", + "Paige", + "Rose", + "Amber", + "Audrey", + "Claudia", + "Taylor", + "Madeline", + "Angelina", + "Natalie", + "Charli", + "Lauren", + "Ashley", + "Violet", + "Mackenzie", + "Abby", + "Skye", + "Lillian", + "Alana", + "Lola", + "Leah", + "Eve", + "Kiara" + ]; + +},{}],197:[function(require,module,exports){ + var name = {}; + module['exports'] = name; + name.first_name = require("./first_name"); + name.last_name = require("./last_name"); + +},{"./first_name":196,"./last_name":198}],198:[function(require,module,exports){ + module["exports"] = [ + "Smith", + "Jones", + "Williams", + "Brown", + "Wilson", + "Taylor", + "Johnson", + "White", + "Martin", + "Anderson", + "Thompson", + "Nguyen", + "Thomas", + "Walker", + "Harris", + "Lee", + "Ryan", + "Robinson", + "Kelly", + "King", + "Davis", + "Wright", + "Evans", + "Roberts", + "Green", + "Hall", + "Wood", + "Jackson", + "Clarke", + "Patel", + "Khan", + "Lewis", + "James", + "Phillips", + "Mason", + "Mitchell", + "Rose", + "Davies", + "Rodriguez", + "Cox", + "Alexander", + "Garden", + "Campbell", + "Johnston", + "Moore", + "Smyth", + "O'neill", + "Doherty", + "Stewart", + "Quinn", + "Murphy", + "Graham", + "Mclaughlin", + "Hamilton", + "Murray", + "Hughes", + "Robertson", + "Thomson", + "Scott", + "Macdonald", + "Reid", + "Clark", + "Ross", + "Young", + "Watson", + "Paterson", + "Morrison", + "Morgan", + "Griffiths", + "Edwards", + "Rees", + "Jenkins", + "Owen", + "Price", + "Moss", + "Richards", + "Abbott", + "Adams", + "Armstrong", + "Bahringer", + "Bailey", + "Barrows", + "Bartell", + "Bartoletti", + "Barton", + "Bauch", + "Baumbach", + "Bayer", + "Beahan", + "Beatty", + "Becker", + "Beier", + "Berge", + "Bergstrom", + "Bode", + "Bogan", + "Borer", + "Bosco", + "Botsford", + "Boyer", + "Boyle", + "Braun", + "Bruen", + "Carroll", + "Carter", + "Cartwright", + "Casper", + "Cassin", + "Champlin", + "Christiansen", + "Cole", + "Collier", + "Collins", + "Connelly", + "Conroy", + "Corkery", + "Cormier", + "Corwin", + "Cronin", + "Crooks", + "Cruickshank", + "Cummings", + "D'amore", + "Daniel", + "Dare", + "Daugherty", + "Dickens", + "Dickinson", + "Dietrich", + "Donnelly", + "Dooley", + "Douglas", + "Doyle", + "Durgan", + "Ebert", + "Emard", + "Emmerich", + "Erdman", + "Ernser", + "Fadel", + "Fahey", + "Farrell", + "Fay", + "Feeney", + "Feil", + "Ferry", + "Fisher", + "Flatley", + "Gibson", + "Gleason", + "Glover", + "Goldner", + "Goodwin", + "Grady", + "Grant", + "Greenfelder", + "Greenholt", + "Grimes", + "Gutmann", + "Hackett", + "Hahn", + "Haley", + "Hammes", + "Hand", + "Hane", + "Hansen", + "Harber", + "Hartmann", + "Harvey", + "Hayes", + "Heaney", + "Heathcote", + "Heller", + "Hermann", + "Hermiston", + "Hessel", + "Hettinger", + "Hickle", + "Hill", + "Hills", + "Hoppe", + "Howe", + "Howell", + "Hudson", + "Huel", + "Hyatt", + "Jacobi", + "Jacobs", + "Jacobson", + "Jerde", + "Johns", + "Keeling", + "Kemmer", + "Kessler", + "Kiehn", + "Kirlin", + "Klein", + "Koch", + "Koelpin", + "Kohler", + "Koss", + "Kovacek", + "Kreiger", + "Kris", + "Kuhlman", + "Kuhn", + "Kulas", + "Kunde", + "Kutch", + "Lakin", + "Lang", + "Langworth", + "Larkin", + "Larson", + "Leannon", + "Leffler", + "Little", + "Lockman", + "Lowe", + "Lynch", + "Mann", + "Marks", + "Marvin", + "Mayer", + "Mccullough", + "Mcdermott", + "Mckenzie", + "Miller", + "Mills", + "Monahan", + "Morissette", + "Mueller", + "Muller", + "Nader", + "Nicolas", + "Nolan", + "O'connell", + "O'conner", + "O'hara", + "O'keefe", + "Olson", + "O'reilly", + "Parisian", + "Parker", + "Quigley", + "Reilly", + "Reynolds", + "Rice", + "Ritchie", + "Rohan", + "Rolfson", + "Rowe", + "Russel", + "Rutherford", + "Sanford", + "Sauer", + "Schmidt", + "Schmitt", + "Schneider", + "Schroeder", + "Schultz", + "Shields", + "Smitham", + "Spencer", + "Stanton", + "Stark", + "Stokes", + "Swift", + "Tillman", + "Towne", + "Tremblay", + "Tromp", + "Turcotte", + "Turner", + "Walsh", + "Walter", + "Ward", + "Waters", + "Weber", + "Welch", + "West", + "Wilderman", + "Wilkinson", + "Williamson", + "Windler", + "Wolf" + ]; + +},{}],199:[function(require,module,exports){ + module["exports"] = [ + "0# #### ####", + "+61 # #### ####", + "04## ### ###", + "+61 4## ### ###" + ]; + +},{}],200:[function(require,module,exports){ + arguments[4][47][0].apply(exports,arguments) +},{"./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":202}],202:[function(require,module,exports){ + arguments[4][38][0].apply(exports,arguments) +},{"./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", + "Tu", + "Um", + "a", + "becoose-a", + "boot", + "bork", + "burn", + "chuuses", + "cumplete-a", + "cun", + "cunseqooences", + "curcoomstunces", + "dee", + "deeslikes", + "denuoonceeng", + "desures", + "du", + "eccuoont", + "ectooel", + "edfuntege-a", + "efueeds", + "egeeen", + "ell", + "ere-a", + "feend", + "foolt", + "frum", + "geefe-a", + "gesh", + "greet", + "heem", + "heppeeness", + "hes", + "hoo", + "hoomun", + "idea", + "ifer", + "in", + "incuoonter", + "injuy", + "itselff", + "ixcept", + "ixemple-a", + "ixerceese-a", + "ixpleeen", + "ixplurer", + "ixpuoond", + "ixtremely", + "knoo", + "lebureeuoos", + "lufes", + "meestekee", + "mester-booeelder", + "moost", + "mun", + "nu", + "nut", + "oobteeen", + "oocceseeunelly", + "ooccoor", + "ooff", + "oone-a", + "oor", + "peeen", + "peeenffool", + "physeecel", + "pleesoore-a", + "poorsooe-a", + "poorsooes", + "preeesing", + "prucoore-a", + "prudooces", + "reeght", + "reshunelly", + "resooltunt", + "sume-a", + "teecheengs", + "teke-a", + "thees", + "thet", + "thuse-a", + "treefiel", + "troot", + "tu", + "tueel", + "und", + "undertekes", + "unnuyeeng", + "uny", + "unyune-a", + "us", + "veell", + "veet", + "ves", + "vheech", + "vhu", + "yuoo", + "zee", + "zeere-a" + ]; + +},{}],204:[function(require,module,exports){ + module["exports"] = [ + "Canada" + ]; + +},{}],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":204,"./postcode.js":206,"./state":207,"./state_abbr":208}],206:[function(require,module,exports){ + module["exports"] = [ + "?#? #?#" + ]; + +},{}],207:[function(require,module,exports){ + module["exports"] = [ + "Alberta", + "British Columbia", + "Manitoba", + "New Brunswick", + "Newfoundland and Labrador", + "Nova Scotia", + "Northwest Territories", + "Nunavut", + "Ontario", + "Prince Edward Island", + "Quebec", + "Saskatchewan", + "Yukon" + ]; + +},{}],208:[function(require,module,exports){ + module["exports"] = [ + "AB", + "BC", + "MB", + "NB", + "NL", + "NS", + "NU", + "NT", + "ON", + "PE", + "QC", + "SK", + "YT" + ]; + +},{}],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":205,"./internet":212,"./phone_number":214}],210:[function(require,module,exports){ + module["exports"] = [ + "ca", + "com", + "biz", + "info", + "name", + "net", + "org" + ]; + +},{}],211:[function(require,module,exports){ + module["exports"] = [ + "gmail.com", + "yahoo.ca", + "hotmail.com" + ]; + +},{}],212:[function(require,module,exports){ + arguments[4][37][0].apply(exports,arguments) +},{"./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-###-###-####", + "###-###-#### x###", + "(###)###-#### x###", + "1-###-###-#### x###", + "###.###.#### x###", + "###-###-#### x####", + "(###)###-#### x####", + "1-###-###-#### x####", + "###.###.#### x####", + "###-###-#### x#####", + "(###)###-#### x#####", + "1-###-###-#### x#####", + "###.###.#### x#####" + ]; + +},{}],214:[function(require,module,exports){ + arguments[4][47][0].apply(exports,arguments) +},{"./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", + "Buckinghamshire", + "Cambridgeshire", + "Central", + "Cheshire", + "Cleveland", + "Clwyd", + "Cornwall", + "County Antrim", + "County Armagh", + "County Down", + "County Fermanagh", + "County Londonderry", + "County Tyrone", + "Cumbria", + "Derbyshire", + "Devon", + "Dorset", + "Dumfries and Galloway", + "Durham", + "Dyfed", + "East Sussex", + "Essex", + "Fife", + "Gloucestershire", + "Grampian", + "Greater Manchester", + "Gwent", + "Gwynedd County", + "Hampshire", + "Herefordshire", + "Hertfordshire", + "Highlands and Islands", + "Humberside", + "Isle of Wight", + "Kent", + "Lancashire", + "Leicestershire", + "Lincolnshire", + "Lothian", + "Merseyside", + "Mid Glamorgan", + "Norfolk", + "North Yorkshire", + "Northamptonshire", + "Northumberland", + "Nottinghamshire", + "Oxfordshire", + "Powys", + "Rutland", + "Shropshire", + "Somerset", + "South Glamorgan", + "South Yorkshire", + "Staffordshire", + "Strathclyde", + "Suffolk", + "Surrey", + "Tayside", + "Tyne and Wear", + "Warwickshire", + "West Glamorgan", + "West Midlands", + "West Sussex", + "West Yorkshire", + "Wiltshire", + "Worcestershire" + ]; + +},{}],216:[function(require,module,exports){ + module["exports"] = [ + "England", + "Scotland", + "Wales", + "Northern Ireland" + ]; + +},{}],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":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## ######" + ]; + +},{}],221:[function(require,module,exports){ + arguments[4][29][0].apply(exports,arguments) +},{"./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":217,"./cell_phone":221,"./internet":224,"./phone_number":226}],223:[function(require,module,exports){ + module["exports"] = [ + "co.uk", + "com", + "biz", + "info", + "name" + ]; + +},{}],224:[function(require,module,exports){ + arguments[4][88][0].apply(exports,arguments) +},{"./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# ### ####", + "02# #### ####", + "03## ### ####", + "055 #### ####", + "056 #### ####", + "0800 ### ####", + "08## ### ####", + "09## ### ####", + "016977 ####", + "01### #####", + "0500 ######", + "0800 ######" + ]; + +},{}],226:[function(require,module,exports){ + arguments[4][47][0].apply(exports,arguments) +},{"./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", + "Donegal", + "Dublin", + "Galway", + "Kerry", + "Kildare", + "Kilkenny", + "Laois", + "Leitrim", + "Limerick", + "Longford", + "Louth", + "Mayo", + "Meath", + "Monaghan", + "Offaly", + "Roscommon", + "Sligo", + "Tipperary", + "Waterford", + "Westmeath", + "Wexford", + "Wicklow" + ]; + +},{}],228:[function(require,module,exports){ + module["exports"] = [ + "Ireland" + ]; + +},{}],229:[function(require,module,exports){ + var address = {}; + module['exports'] = address; + address.county = require("./county"); + address.default_country = require("./default_country"); + +},{"./county":227,"./default_country":228}],230:[function(require,module,exports){ + module["exports"] = [ + "082 ### ####", + "083 ### ####", + "085 ### ####", + "086 ### ####", + "087 ### ####", + "089 ### ####" + ]; + +},{}],231:[function(require,module,exports){ + arguments[4][29][0].apply(exports,arguments) +},{"./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":229,"./cell_phone":231,"./internet":234,"./phone_number":236}],233:[function(require,module,exports){ + module["exports"] = [ + "ie", + "com", + "net", + "info", + "eu" + ]; + +},{}],234:[function(require,module,exports){ + arguments[4][88][0].apply(exports,arguments) +},{"./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 #######", + "024 #######", + "025 #######", + "026 #######", + "027 #######", + "028 #######", + "029 #######", + "0402 #######", + "0404 #######", + "041 #######", + "042 #######", + "043 #######", + "044 #######", + "045 #######", + "046 #######", + "047 #######", + "049 #######", + "0504 #######", + "0505 #######", + "051 #######", + "052 #######", + "053 #######", + "056 #######", + "057 #######", + "058 #######", + "059 #######", + "061 #######", + "062 #######", + "063 #######", + "064 #######", + "065 #######", + "066 #######", + "067 #######", + "068 #######", + "069 #######", + "071 #######", + "074 #######", + "090 #######", + "091 #######", + "093 #######", + "094 #######", + "095 #######", + "096 #######", + "097 #######", + "098 #######", + "099 #######" + ]; + +},{}],236:[function(require,module,exports){ + arguments[4][47][0].apply(exports,arguments) +},{"./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" + ]; + +},{}],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":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", + "Chhattisgarh", + "Goa", + "Gujarat", + "Haryana", + "Himachal Pradesh", + "Jammu and Kashmir", + "Jharkhand", + "Karnataka", + "Kerala", + "Madya Pradesh", + "Maharashtra", + "Manipur", + "Meghalaya", + "Mizoram", + "Nagaland", + "Orissa", + "Punjab", + "Rajasthan", + "Sikkim", + "Tamil Nadu", + "Tripura", + "Uttaranchal", + "Uttar Pradesh", + "West Bengal", + "Andaman and Nicobar Islands", + "Chandigarh", + "Dadar and Nagar Haveli", + "Daman and Diu", + "Delhi", + "Lakshadweep", + "Pondicherry" + ]; + +},{}],241:[function(require,module,exports){ + module["exports"] = [ + "AP", + "AR", + "AS", + "BR", + "CG", + "DL", + "GA", + "GJ", + "HR", + "HP", + "JK", + "JS", + "KA", + "KL", + "MP", + "MH", + "MN", + "ML", + "MZ", + "NL", + "OR", + "PB", + "RJ", + "SK", + "TN", + "TR", + "UK", + "UP", + "WB", + "AN", + "CH", + "DN", + "DD", + "LD", + "PY" + ]; + +},{}],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" + ]; + +},{}],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":238,"./company":242,"./internet":247,"./name":249,"./phone_number":252}],245:[function(require,module,exports){ + module["exports"] = [ + "in", + "com", + "biz", + "info", + "name", + "net", + "org", + "co.in" + ]; + +},{}],246:[function(require,module,exports){ + module["exports"] = [ + "gmail.com", + "yahoo.co.in", + "hotmail.com" + ]; + +},{}],247:[function(require,module,exports){ + arguments[4][37][0].apply(exports,arguments) +},{"./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", + "Arya", + "Aashritha", + "Aatmaja", + "Atmaja", + "Abhaya", + "Adwitiya", + "Agrata", + "Ahilya", + "Ahalya", + "Aishani", + "Akshainie", + "Akshata", + "Akshita", + "Akula", + "Ambar", + "Amodini", + "Amrita", + "Amritambu", + "Anala", + "Anamika", + "Ananda", + "Anandamayi", + "Ananta", + "Anila", + "Anjali", + "Anjushri", + "Anjushree", + "Annapurna", + "Anshula", + "Anuja", + "Anusuya", + "Anasuya", + "Anasooya", + "Anwesha", + "Apsara", + "Aruna", + "Asha", + "Aasa", + "Aasha", + "Aslesha", + "Atreyi", + "Atreyee", + "Avani", + "Abani", + "Avantika", + "Ayushmati", + "Baidehi", + "Vaidehi", + "Bala", + "Baala", + "Balamani", + "Basanti", + "Vasanti", + "Bela", + "Bhadra", + "Bhagirathi", + "Bhagwanti", + "Bhagwati", + "Bhamini", + "Bhanumati", + "Bhaanumati", + "Bhargavi", + "Bhavani", + "Bhilangana", + "Bilwa", + "Bilva", + "Buddhana", + "Chakrika", + "Chanda", + "Chandi", + "Chandni", + "Chandini", + "Chandani", + "Chandra", + "Chandira", + "Chandrabhaga", + "Chandrakala", + "Chandrakin", + "Chandramani", + "Chandrani", + "Chandraprabha", + "Chandraswaroopa", + "Chandravati", + "Chapala", + "Charumati", + "Charvi", + "Chatura", + "Chitrali", + "Chitramala", + "Chitrangada", + "Daksha", + "Dakshayani", + "Damayanti", + "Darshwana", + "Deepali", + "Dipali", + "Deeptimoyee", + "Deeptimayee", + "Devangana", + "Devani", + "Devasree", + "Devi", + "Daevi", + "Devika", + "Daevika", + "Dhaanyalakshmi", + "Dhanalakshmi", + "Dhana", + "Dhanadeepa", + "Dhara", + "Dharani", + "Dharitri", + "Dhatri", + "Diksha", + "Deeksha", + "Divya", + "Draupadi", + "Dulari", + "Durga", + "Durgeshwari", + "Ekaparnika", + "Elakshi", + "Enakshi", + "Esha", + "Eshana", + "Eshita", + "Gautami", + "Gayatri", + "Geeta", + "Geetanjali", + "Gitanjali", + "Gemine", + "Gemini", + "Girja", + "Girija", + "Gita", + "Hamsini", + "Harinakshi", + "Harita", + "Heema", + "Himadri", + "Himani", + "Hiranya", + "Indira", + "Jaimini", + "Jaya", + "Jyoti", + "Jyotsana", + "Kali", + "Kalinda", + "Kalpana", + "Kalyani", + "Kama", + "Kamala", + "Kamla", + "Kanchan", + "Kanishka", + "Kanti", + "Kashyapi", + "Kumari", + "Kumuda", + "Lakshmi", + "Laxmi", + "Lalita", + "Lavanya", + "Leela", + "Lila", + "Leela", + "Madhuri", + "Malti", + "Malati", + "Mandakini", + "Mandaakin", + "Mangala", + "Mangalya", + "Mani", + "Manisha", + "Manjusha", + "Meena", + "Mina", + "Meenakshi", + "Minakshi", + "Menka", + "Menaka", + "Mohana", + "Mohini", + "Nalini", + "Nikita", + "Ojaswini", + "Omana", + "Oormila", + "Urmila", + "Opalina", + "Opaline", + "Padma", + "Parvati", + "Poornima", + "Purnima", + "Pramila", + "Prasanna", + "Preity", + "Prema", + "Priya", + "Priyala", + "Pushti", + "Radha", + "Rageswari", + "Rageshwari", + "Rajinder", + "Ramaa", + "Rati", + "Rita", + "Rohana", + "Rukhmani", + "Rukmin", + "Rupinder", + "Sanya", + "Sarada", + "Sharda", + "Sarala", + "Sarla", + "Saraswati", + "Sarisha", + "Saroja", + "Shakti", + "Shakuntala", + "Shanti", + "Sharmila", + "Shashi", + "Shashikala", + "Sheela", + "Shivakari", + "Shobhana", + "Shresth", + "Shresthi", + "Shreya", + "Shreyashi", + "Shridevi", + "Shrishti", + "Shubha", + "Shubhaprada", + "Siddhi", + "Sitara", + "Sloka", + "Smita", + "Smriti", + "Soma", + "Subhashini", + "Subhasini", + "Sucheta", + "Sudeva", + "Sujata", + "Sukanya", + "Suma", + "Suma", + "Sumitra", + "Sunita", + "Suryakantam", + "Sushma", + "Swara", + "Swarnalata", + "Sweta", + "Shwet", + "Tanirika", + "Tanushree", + "Tanushri", + "Tanushri", + "Tanya", + "Tara", + "Trisha", + "Uma", + "Usha", + "Vaijayanti", + "Vaijayanthi", + "Baijayanti", + "Vaishvi", + "Vaishnavi", + "Vaishno", + "Varalakshmi", + "Vasudha", + "Vasundhara", + "Veda", + "Vedanshi", + "Vidya", + "Vimala", + "Vrinda", + "Vrund", + "Aadi", + "Aadidev", + "Aadinath", + "Aaditya", + "Aagam", + "Aagney", + "Aamod", + "Aanandaswarup", + "Anand Swarup", + "Aanjaneya", + "Anjaneya", + "Aaryan", + "Aryan", + "Aatmaj", + "Aatreya", + "Aayushmaan", + "Aayushman", + "Abhaidev", + "Abhaya", + "Abhirath", + "Abhisyanta", + "Acaryatanaya", + "Achalesvara", + "Acharyanandana", + "Acharyasuta", + "Achintya", + "Achyut", + "Adheesh", + "Adhiraj", + "Adhrit", + "Adikavi", + "Adinath", + "Aditeya", + "Aditya", + "Adityanandan", + "Adityanandana", + "Adripathi", + "Advaya", + "Agasti", + "Agastya", + "Agneya", + "Aagneya", + "Agnimitra", + "Agniprava", + "Agnivesh", + "Agrata", + "Ajit", + "Ajeet", + "Akroor", + "Akshaj", + "Akshat", + "Akshayakeerti", + "Alok", + "Aalok", + "Amaranaath", + "Amarnath", + "Amaresh", + "Ambar", + "Ameyatma", + "Amish", + "Amogh", + "Amrit", + "Anaadi", + "Anagh", + "Anal", + "Anand", + "Aanand", + "Anang", + "Anil", + "Anilaabh", + "Anilabh", + "Anish", + "Ankal", + "Anunay", + "Anurag", + "Anuraag", + "Archan", + "Arindam", + "Arjun", + "Arnesh", + "Arun", + "Ashlesh", + "Ashok", + "Atmanand", + "Atmananda", + "Avadhesh", + "Baalaaditya", + "Baladitya", + "Baalagopaal", + "Balgopal", + "Balagopal", + "Bahula", + "Bakula", + "Bala", + "Balaaditya", + "Balachandra", + "Balagovind", + "Bandhu", + "Bandhul", + "Bankim", + "Bankimchandra", + "Bhadrak", + "Bhadraksh", + "Bhadran", + "Bhagavaan", + "Bhagvan", + "Bharadwaj", + "Bhardwaj", + "Bharat", + "Bhargava", + "Bhasvan", + "Bhaasvan", + "Bhaswar", + "Bhaaswar", + "Bhaumik", + "Bhaves", + "Bheeshma", + "Bhisham", + "Bhishma", + "Bhima", + "Bhoj", + "Bhramar", + "Bhudev", + "Bhudeva", + "Bhupati", + "Bhoopati", + "Bhoopat", + "Bhupen", + "Bhushan", + "Bhooshan", + "Bhushit", + "Bhooshit", + "Bhuvanesh", + "Bhuvaneshwar", + "Bilva", + "Bodhan", + "Brahma", + "Brahmabrata", + "Brahmanandam", + "Brahmaanand", + "Brahmdev", + "Brajendra", + "Brajesh", + "Brijesh", + "Birjesh", + "Budhil", + "Chakor", + "Chakradhar", + "Chakravartee", + "Chakravarti", + "Chanakya", + "Chaanakya", + "Chandak", + "Chandan", + "Chandra", + "Chandraayan", + "Chandrabhan", + "Chandradev", + "Chandraketu", + "Chandramauli", + "Chandramohan", + "Chandran", + "Chandranath", + "Chapal", + "Charak", + "Charuchandra", + "Chaaruchandra", + "Charuvrat", + "Chatur", + "Chaturaanan", + "Chaturbhuj", + "Chetan", + "Chaten", + "Chaitan", + "Chetanaanand", + "Chidaakaash", + "Chidaatma", + "Chidambar", + "Chidambaram", + "Chidananda", + "Chinmayanand", + "Chinmayananda", + "Chiranjeev", + "Chiranjeeve", + "Chitraksh", + "Daiwik", + "Daksha", + "Damodara", + "Dandak", + "Dandapaani", + "Darshan", + "Datta", + "Dayaamay", + "Dayamayee", + "Dayaananda", + "Dayaanidhi", + "Kin", + "Deenabandhu", + "Deepan", + "Deepankar", + "Dipankar", + "Deependra", + "Dipendra", + "Deepesh", + "Dipesh", + "Deeptanshu", + "Deeptendu", + "Diptendu", + "Deeptiman", + "Deeptimoy", + "Deeptimay", + "Dev", + "Deb", + "Devadatt", + "Devagya", + "Devajyoti", + "Devak", + "Devdan", + "Deven", + "Devesh", + "Deveshwar", + "Devi", + "Devvrat", + "Dhananjay", + "Dhanapati", + "Dhanpati", + "Dhanesh", + "Dhanu", + "Dhanvin", + "Dharmaketu", + "Dhruv", + "Dhyanesh", + "Dhyaneshwar", + "Digambar", + "Digambara", + "Dinakar", + "Dinkar", + "Dinesh", + "Divaakar", + "Divakar", + "Deevakar", + "Divjot", + "Dron", + "Drona", + "Dwaipayan", + "Dwaipayana", + "Eekalabya", + "Ekalavya", + "Ekaksh", + "Ekaaksh", + "Ekaling", + "Ekdant", + "Ekadant", + "Gajaadhar", + "Gajadhar", + "Gajbaahu", + "Gajabahu", + "Ganak", + "Ganaka", + "Ganapati", + "Gandharv", + "Gandharva", + "Ganesh", + "Gangesh", + "Garud", + "Garuda", + "Gati", + "Gatik", + "Gaurang", + "Gauraang", + "Gauranga", + "Gouranga", + "Gautam", + "Gautama", + "Goutam", + "Ghanaanand", + "Ghanshyam", + "Ghanashyam", + "Giri", + "Girik", + "Girika", + "Girindra", + "Giriraaj", + "Giriraj", + "Girish", + "Gopal", + "Gopaal", + "Gopi", + "Gopee", + "Gorakhnath", + "Gorakhanatha", + "Goswamee", + "Goswami", + "Gotum", + "Gautam", + "Govinda", + "Gobinda", + "Gudakesha", + "Gudakesa", + "Gurdev", + "Guru", + "Hari", + "Harinarayan", + "Harit", + "Himadri", + "Hiranmay", + "Hiranmaya", + "Hiranya", + "Inder", + "Indra", + "Indra", + "Jagadish", + "Jagadisha", + "Jagathi", + "Jagdeep", + "Jagdish", + "Jagmeet", + "Jahnu", + "Jai", + "Javas", + "Jay", + "Jitendra", + "Jitender", + "Jyotis", + "Kailash", + "Kama", + "Kamalesh", + "Kamlesh", + "Kanak", + "Kanaka", + "Kannan", + "Kannen", + "Karan", + "Karthik", + "Kartik", + "Karunanidhi", + "Kashyap", + "Kiran", + "Kirti", + "Keerti", + "Krishna", + "Krishnadas", + "Krishnadasa", + "Kumar", + "Lai", + "Lakshman", + "Laxman", + "Lakshmidhar", + "Lakshminath", + "Lal", + "Laal", + "Mahendra", + "Mohinder", + "Mahesh", + "Maheswar", + "Mani", + "Manik", + "Manikya", + "Manoj", + "Marut", + "Mayoor", + "Meghnad", + "Meghnath", + "Mohan", + "Mukesh", + "Mukul", + "Nagabhushanam", + "Nanda", + "Narayan", + "Narendra", + "Narinder", + "Naveen", + "Navin", + "Nawal", + "Naval", + "Nimit", + "Niranjan", + "Nirbhay", + "Niro", + "Param", + "Paramartha", + "Pran", + "Pranay", + "Prasad", + "Prathamesh", + "Prayag", + "Prem", + "Puneet", + "Purushottam", + "Rahul", + "Raj", + "Rajan", + "Rajendra", + "Rajinder", + "Rajiv", + "Rakesh", + "Ramesh", + "Rameshwar", + "Ranjit", + "Ranjeet", + "Ravi", + "Ritesh", + "Rohan", + "Rohit", + "Rudra", + "Sachin", + "Sameer", + "Samir", + "Sanjay", + "Sanka", + "Sarvin", + "Satish", + "Satyen", + "Shankar", + "Shantanu", + "Shashi", + "Sher", + "Shiv", + "Siddarth", + "Siddhran", + "Som", + "Somu", + "Somnath", + "Subhash", + "Subodh", + "Suman", + "Suresh", + "Surya", + "Suryakant", + "Suryakanta", + "Sushil", + "Susheel", + "Swami", + "Swapnil", + "Tapan", + "Tara", + "Tarun", + "Tej", + "Tejas", + "Trilochan", + "Trilochana", + "Trilok", + "Trilokesh", + "Triloki", + "Triloki Nath", + "Trilokanath", + "Tushar", + "Udai", + "Udit", + "Ujjawal", + "Ujjwal", + "Umang", + "Upendra", + "Uttam", + "Vasudev", + "Vasudeva", + "Vedang", + "Vedanga", + "Vidhya", + "Vidur", + "Vidhur", + "Vijay", + "Vimal", + "Vinay", + "Vishnu", + "Bishnu", + "Vishwamitra", + "Vyas", + "Yogendra", + "Yoginder", + "Yogesh" + ]; + +},{}],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", + "Agarwal", + "Ahluwalia", + "Ahuja", + "Arora", + "Asan", + "Bandopadhyay", + "Banerjee", + "Bharadwaj", + "Bhat", + "Butt", + "Bhattacharya", + "Bhattathiri", + "Chaturvedi", + "Chattopadhyay", + "Chopra", + "Desai", + "Deshpande", + "Devar", + "Dhawan", + "Dubashi", + "Dutta", + "Dwivedi", + "Embranthiri", + "Ganaka", + "Gandhi", + "Gill", + "Gowda", + "Guha", + "Guneta", + "Gupta", + "Iyer", + "Iyengar", + "Jain", + "Jha", + "Johar", + "Joshi", + "Kakkar", + "Kaniyar", + "Kapoor", + "Kaul", + "Kaur", + "Khan", + "Khanna", + "Khatri", + "Kocchar", + "Mahajan", + "Malik", + "Marar", + "Menon", + "Mehra", + "Mehrotra", + "Mishra", + "Mukhopadhyay", + "Nayar", + "Naik", + "Nair", + "Nambeesan", + "Namboothiri", + "Nehru", + "Pandey", + "Panicker", + "Patel", + "Patil", + "Pilla", + "Pillai", + "Pothuvaal", + "Prajapat", + "Rana", + "Reddy", + "Saini", + "Sethi", + "Shah", + "Sharma", + "Shukla", + "Singh", + "Sinha", + "Somayaji", + "Tagore", + "Talwar", + "Tandon", + "Trivedi", + "Varrier", + "Varma", + "Varman", + "Verma" + ]; + +},{}],251:[function(require,module,exports){ + module["exports"] = [ + "+91###-###-####", + "+91##########", + "+91-###-#######" + ]; + +},{}],252:[function(require,module,exports){ + arguments[4][47][0].apply(exports,arguments) +},{"./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" + ]; + +},{}],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":253,"./postcode_by_state":255}],255:[function(require,module,exports){ + module["exports"] = { + "AL": "350##", + "AK": "995##", + "AS": "967##", + "AZ": "850##", + "AR": "717##", + "CA": "900##", + "CO": "800##", + "CT": "061##", + "DC": "204##", + "DE": "198##", + "FL": "322##", + "GA": "301##", + "HI": "967##", + "ID": "832##", + "IL": "600##", + "IN": "463##", + "IA": "510##", + "KS": "666##", + "KY": "404##", + "LA": "701##", + "ME": "042##", + "MD": "210##", + "MA": "026##", + "MI": "480##", + "MN": "555##", + "MS": "387##", + "MO": "650##", + "MT": "590##", + "NE": "688##", + "NV": "898##", + "NH": "036##", + "NJ": "076##", + "NM": "880##", + "NY": "122##", + "NC": "288##", + "ND": "586##", + "OH": "444##", + "OK": "730##", + "OR": "979##", + "PA": "186##", + "RI": "029##", + "SC": "299##", + "SD": "577##", + "TN": "383##", + "TX": "798##", + "UT": "847##", + "VT": "050##", + "VA": "222##", + "WA": "990##", + "WV": "247##", + "WI": "549##", + "WY": "831##" + }; + +},{}],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":254,"./internet":258,"./phone_number":261}],257:[function(require,module,exports){ + module["exports"] = [ + "com", + "us", + "biz", + "info", + "name", + "net", + "org" + ]; + +},{}],258:[function(require,module,exports){ + arguments[4][88][0].apply(exports,arguments) +},{"./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", + "206", + "207", + "208", + "209", + "210", + "212", + "213", + "214", + "215", + "216", + "217", + "218", + "219", + "224", + "225", + "227", + "228", + "229", + "231", + "234", + "239", + "240", + "248", + "251", + "252", + "253", + "254", + "256", + "260", + "262", + "267", + "269", + "270", + "276", + "281", + "283", + "301", + "302", + "303", + "304", + "305", + "307", + "308", + "309", + "310", + "312", + "313", + "314", + "315", + "316", + "317", + "318", + "319", + "320", + "321", + "323", + "330", + "331", + "334", + "336", + "337", + "339", + "347", + "351", + "352", + "360", + "361", + "386", + "401", + "402", + "404", + "405", + "406", + "407", + "408", + "409", + "410", + "412", + "413", + "414", + "415", + "417", + "419", + "423", + "424", + "425", + "434", + "435", + "440", + "443", + "445", + "464", + "469", + "470", + "475", + "478", + "479", + "480", + "484", + "501", + "502", + "503", + "504", + "505", + "507", + "508", + "509", + "510", + "512", + "513", + "515", + "516", + "517", + "518", + "520", + "530", + "540", + "541", + "551", + "557", + "559", + "561", + "562", + "563", + "564", + "567", + "570", + "571", + "573", + "574", + "580", + "585", + "586", + "601", + "602", + "603", + "605", + "606", + "607", + "608", + "609", + "610", + "612", + "614", + "615", + "616", + "617", + "618", + "619", + "620", + "623", + "626", + "630", + "631", + "636", + "641", + "646", + "650", + "651", + "660", + "661", + "662", + "667", + "678", + "682", + "701", + "702", + "703", + "704", + "706", + "707", + "708", + "712", + "713", + "714", + "715", + "716", + "717", + "718", + "719", + "720", + "724", + "727", + "731", + "732", + "734", + "737", + "740", + "754", + "757", + "760", + "763", + "765", + "770", + "772", + "773", + "774", + "775", + "781", + "785", + "786", + "801", + "802", + "803", + "804", + "805", + "806", + "808", + "810", + "812", + "813", + "814", + "815", + "816", + "817", + "818", + "828", + "830", + "831", + "832", + "835", + "843", + "845", + "847", + "848", + "850", + "856", + "857", + "858", + "859", + "860", + "862", + "863", + "864", + "865", + "870", + "872", + "878", + "901", + "903", + "904", + "906", + "907", + "908", + "909", + "910", + "912", + "913", + "914", + "915", + "916", + "917", + "918", + "919", + "920", + "925", + "928", + "931", + "936", + "937", + "940", + "941", + "947", + "949", + "952", + "954", + "956", + "959", + "970", + "971", + "972", + "973", + "975", + "978", + "979", + "980", + "984", + "985", + "989" + ]; + +},{}],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":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}" + ]; + +},{}],264:[function(require,module,exports){ + module["exports"] = [ + "Bondi", + "Burleigh Heads", + "Carlton", + "Fitzroy", + "Fremantle", + "Glenelg", + "Manly", + "Noosa", + "Stones Corner", + "St Kilda", + "Surry Hills", + "Yarra Valley" + ]; + +},{}],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"); + address.city = require("./city"); + address.state_abbr = require("./state_abbr"); + address.region = require("./region"); + 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":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" + ]; + +},{}],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}],272:[function(require,module,exports){ + module["exports"] = [ + "Ramsay Street", + "Bonnie Doon", + "Cavill Avenue", + "Queen Street" + ]; + +},{}],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":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":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", + "Olivia", + "Zoe", + "Lily", + "Sophie", + "Amelia", + "Sofia", + "Ella", + "Isabella", + "Ruby", + "Sienna", + "Mia+3", + "Grace", + "Emma", + "Ivy", + "Layla", + "Abigail", + "Isla", + "Hannah", + "Zara", + "Lucy", + "Evie", + "Annabelle", + "Madison", + "Alice", + "Georgia", + "Maya", + "Madeline", + "Audrey", + "Scarlett", + "Isabelle", + "Chelsea", + "Mila", + "Holly", + "Indiana", + "Poppy", + "Harper", + "Sarah", + "Alyssa", + "Jasmine", + "Imogen", + "Hayley", + "Pheobe", + "Eva", + "Evelyn", + "Mackenzie", + "Ayla", + "Oliver", + "Jack", + "Jackson", + "William", + "Ethan", + "Charlie", + "Lucas", + "Cooper", + "Lachlan", + "Noah", + "Liam", + "Alexander", + "Max", + "Isaac", + "Thomas", + "Xavier", + "Oscar", + "Benjamin", + "Aiden", + "Mason", + "Samuel", + "James", + "Levi", + "Riley", + "Harrison", + "Ryan", + "Henry", + "Jacob", + "Joshua", + "Leo", + "Zach", + "Harry", + "Hunter", + "Flynn", + "Archie", + "Tyler", + "Elijah", + "Hayden", + "Jayden", + "Blake", + "Archer", + "Ashton", + "Sebastian", + "Zachery", + "Lincoln", + "Mitchell", + "Luca", + "Nathan", + "Kai", + "Connor", + "Tom", + "Nigel", + "Matt", + "Sean" + ]; + +},{}],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":279,"./last_name":281,"./ocker_first_name":282}],281:[function(require,module,exports){ + module["exports"] = [ + "Smith", + "Jones", + "Williams", + "Brown", + "Wilson", + "Taylor", + "Morton", + "White", + "Martin", + "Anderson", + "Thompson", + "Nguyen", + "Thomas", + "Walker", + "Harris", + "Lee", + "Ryan", + "Robinson", + "Kelly", + "King", + "Rausch", + "Ridge", + "Connolly", + "LeQuesne" + ]; + +},{}],282:[function(require,module,exports){ + module["exports"] = [ + "Bazza", + "Bluey", + "Davo", + "Johno", + "Shano", + "Shazza" + ]; + +},{}],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":283,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],285:[function(require,module,exports){ + module["exports"] = [ + " s/n.", + ", #", + ", ##", + " #", + " ##" + ]; + +},{}],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", + "Torrevieja", + "Lugo", + "Santiago de Compostela", + "Gerona", + "Cáceres", + "Lorca", + "Coslada", + "Talavera de la Reina", + "El Puerto de Santa María", + "Cornellá de Llobregat", + "Avilés", + "Palencia", + "Gecho", + "Orihuela", + "Pontevedra", + "Pozuelo de Alarcón", + "Toledo", + "El Ejido", + "Guadalajara", + "Gandía", + "Ceuta", + "Ferrol", + "Chiclana de la Frontera", + "Manresa", + "Roquetas de Mar", + "Ciudad Real", + "Rubí", + "Benidorm", + "San Sebastían de los Reyes", + "Ponferrada", + "Zamora", + "Alcalá de Guadaira", + "Fuengirola", + "Mijas", + "Sanlúcar de Barrameda", + "La Línea de la Concepción", + "Majadahonda", + "Sagunto", + "El Prat de LLobregat", + "Viladecans", + "Linares", + "Alcoy", + "Irún", + "Estepona", + "Torremolinos", + "Rivas-Vaciamadrid", + "Molina de Segura", + "Paterna", + "Granollers", + "Santa Lucía de Tirajana", + "Motril", + "Cerdañola del Vallés", + "Arrecife", + "Segovia", + "Torrelavega", + "Elda", + "Mérida", + "Ávila", + "Valdemoro", + "Cuenta", + "Collado Villalba", + "Benalmádena", + "Mollet del Vallés", + "Puertollano", + "Madrid", + "Barcelona", + "Valencia", + "Sevilla", + "Zaragoza", + "Málaga", + "Murcia", + "Palma de Mallorca", + "Las Palmas de Gran Canaria", + "Bilbao", + "Córdoba", + "Alicante", + "Valladolid", + "Vigo", + "Gijón", + "Hospitalet de LLobregat", + "La Coruña", + "Granada", + "Vitoria", + "Elche", + "Santa Cruz de Tenerife", + "Oviedo", + "Badalona", + "Cartagena", + "Móstoles", + "Jerez de la Frontera", + "Tarrasa", + "Sabadell", + "Alcalá de Henares", + "Pamplona", + "Fuenlabrada", + "Almería", + "San Sebastián", + "Leganés", + "Santander", + "Burgos", + "Castellón de la Plana", + "Alcorcón", + "Albacete", + "Getafe", + "Salamanca", + "Huelva", + "Logroño", + "Badajoz", + "San Cristróbal de la Laguna", + "León", + "Tarragona", + "Cádiz", + "Lérida", + "Marbella", + "Mataró", + "Dos Hermanas", + "Santa Coloma de Gramanet", + "Jaén", + "Algeciras", + "Torrejón de Ardoz", + "Orense", + "Alcobendas", + "Reus", + "Calahorra", + "Inca" + ]; + +},{}],288:[function(require,module,exports){ + module["exports"] = [ + "Afganistán", + "Albania", + "Argelia", + "Andorra", + "Angola", + "Argentina", + "Armenia", + "Aruba", + "Australia", + "Austria", + "Azerbayán", + "Bahamas", + "Barein", + "Bangladesh", + "Barbados", + "Bielorusia", + "Bélgica", + "Belice", + "Bermuda", + "Bután", + "Bolivia", + "Bosnia Herzegovina", + "Botswana", + "Brasil", + "Bulgaria", + "Burkina Faso", + "Burundi", + "Camboya", + "Camerún", + "Canada", + "Cabo Verde", + "Islas Caimán", + "Chad", + "Chile", + "China", + "Isla de Navidad", + "Colombia", + "Comodos", + "Congo", + "Costa Rica", + "Costa de Marfil", + "Croacia", + "Cuba", + "Chipre", + "República Checa", + "Dinamarca", + "Dominica", + "República Dominicana", + "Ecuador", + "Egipto", + "El Salvador", + "Guinea Ecuatorial", + "Eritrea", + "Estonia", + "Etiopía", + "Islas Faro", + "Fiji", + "Finlandia", + "Francia", + "Gabón", + "Gambia", + "Georgia", + "Alemania", + "Ghana", + "Grecia", + "Groenlandia", + "Granada", + "Guadalupe", + "Guam", + "Guatemala", + "Guinea", + "Guinea-Bisau", + "Guayana", + "Haiti", + "Honduras", + "Hong Kong", + "Hungria", + "Islandia", + "India", + "Indonesia", + "Iran", + "Irak", + "Irlanda", + "Italia", + "Jamaica", + "Japón", + "Jordania", + "Kazajistan", + "Kenia", + "Kiribati", + "Corea", + "Kuwait", + "Letonia", + "Líbano", + "Liberia", + "Liechtenstein", + "Lituania", + "Luxemburgo", + "Macao", + "Macedonia", + "Madagascar", + "Malawi", + "Malasia", + "Maldivas", + "Mali", + "Malta", + "Martinica", + "Mauritania", + "Méjico", + "Micronesia", + "Moldavia", + "Mónaco", + "Mongolia", + "Montenegro", + "Montserrat", + "Marruecos", + "Mozambique", + "Namibia", + "Nauru", + "Nepal", + "Holanda", + "Nueva Zelanda", + "Nicaragua", + "Niger", + "Nigeria", + "Noruega", + "Omán", + "Pakistan", + "Panamá", + "Papúa Nueva Guinea", + "Paraguay", + "Perú", + "Filipinas", + "Poland", + "Portugal", + "Puerto Rico", + "Rusia", + "Ruanda", + "Samoa", + "San Marino", + "Santo Tomé y Principe", + "Arabia Saudí", + "Senegal", + "Serbia", + "Seychelles", + "Sierra Leona", + "Singapur", + "Eslovaquia", + "Eslovenia", + "Somalia", + "España", + "Sri Lanka", + "Sudán", + "Suriname", + "Suecia", + "Suiza", + "Siria", + "Taiwan", + "Tajikistan", + "Tanzania", + "Tailandia", + "Timor-Leste", + "Togo", + "Tonga", + "Trinidad y Tobago", + "Tunez", + "Turquia", + "Uganda", + "Ucrania", + "Emiratos Árabes Unidos", + "Reino Unido", + "Estados Unidos de América", + "Uruguay", + "Uzbekistan", + "Vanuatu", + "Venezuela", + "Vietnam", + "Yemen", + "Zambia", + "Zimbabwe" + ]; + +},{}],289:[function(require,module,exports){ + module["exports"] = [ + "España" + ]; + +},{}],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"); + address.street_suffix = require("./street_suffix"); + address.secondary_address = require("./secondary_address"); + address.postcode = require("./postcode"); + address.province = require("./province"); + address.state = require("./state"); + address.state_abbr = require("./state_abbr"); + address.time_zone = require("./time_zone"); + address.city = require("./city"); + address.street_name = require("./street_name"); + address.street_address = require("./street_address"); + address.default_country = require("./default_country"); + +},{"./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"] = [ + "#####" + ]; + +},{}],292:[function(require,module,exports){ + module["exports"] = [ + "Álava", + "Albacete", + "Alicante", + "Almería", + "Asturias", + "Ávila", + "Badajoz", + "Barcelona", + "Burgos", + "Cantabria", + "Castellón", + "Ciudad Real", + "Cuenca", + "Cáceres", + "Cádiz", + "Córdoba", + "Gerona", + "Granada", + "Guadalajara", + "Guipúzcoa", + "Huelva", + "Huesca", + "Islas Baleares", + "Jaén", + "La Coruña", + "La Rioja", + "Las Palmas", + "León", + "Lugo", + "lérida", + "Madrid", + "Murcia", + "Málaga", + "Navarra", + "Orense", + "Palencia", + "Pontevedra", + "Salamanca", + "Santa Cruz de Tenerife", + "Segovia", + "Sevilla", + "Soria", + "Tarragona", + "Teruel", + "Toledo", + "Valencia", + "Valladolid", + "Vizcaya", + "Zamora", + "Zaragoza" + ]; + +},{}],293:[function(require,module,exports){ + module["exports"] = [ + "Esc. ###", + "Puerta ###" + ]; + +},{}],294:[function(require,module,exports){ + module["exports"] = [ + "Andalucía", + "Aragón", + "Principado de Asturias", + "Baleares", + "Canarias", + "Cantabria", + "Castilla-La Mancha", + "Castilla y León", + "Cataluña", + "Comunidad Valenciana", + "Extremadura", + "Galicia", + "La Rioja", + "Comunidad de Madrid", + "Navarra", + "País Vasco", + "Región de Murcia" + ]; + +},{}],295:[function(require,module,exports){ + module["exports"] = [ + "And", + "Ara", + "Ast", + "Bal", + "Can", + "Cbr", + "Man", + "Leo", + "Cat", + "Com", + "Ext", + "Gal", + "Rio", + "Mad", + "Nav", + "Vas", + "Mur" + ]; + +},{}],296:[function(require,module,exports){ + module["exports"] = [ + "#{street_name}#{building_number}", + "#{street_name}#{building_number} #{secondary_address}" + ]; + +},{}],297:[function(require,module,exports){ + module["exports"] = [ + "#{street_suffix} #{Name.first_name}", + "#{street_suffix} #{Name.first_name} #{Name.last_name}" + ]; + +},{}],298:[function(require,module,exports){ + module["exports"] = [ + "Aldea", + "Apartamento", + "Arrabal", + "Arroyo", + "Avenida", + "Bajada", + "Barranco", + "Barrio", + "Bloque", + "Calle", + "Calleja", + "Camino", + "Carretera", + "Caserio", + "Colegio", + "Colonia", + "Conjunto", + "Cuesta", + "Chalet", + "Edificio", + "Entrada", + "Escalinata", + "Explanada", + "Extramuros", + "Extrarradio", + "Ferrocarril", + "Glorieta", + "Gran Subida", + "Grupo", + "Huerta", + "Jardines", + "Lado", + "Lugar", + "Manzana", + "Masía", + "Mercado", + "Monte", + "Muelle", + "Municipio", + "Parcela", + "Parque", + "Partida", + "Pasaje", + "Paseo", + "Plaza", + "Poblado", + "Polígono", + "Prolongación", + "Puente", + "Puerta", + "Quinta", + "Ramal", + "Rambla", + "Rampa", + "Riera", + "Rincón", + "Ronda", + "Rua", + "Salida", + "Sector", + "Sección", + "Senda", + "Solar", + "Subida", + "Terrenos", + "Torrente", + "Travesía", + "Urbanización", + "Vía", + "Vía Pública" + ]; + +},{}],299:[function(require,module,exports){ + module["exports"] = [ + "Pacífico/Midway", + "Pacífico/Pago_Pago", + "Pacífico/Honolulu", + "America/Juneau", + "America/Los_Angeles", + "America/Tijuana", + "America/Denver", + "America/Phoenix", + "America/Chihuahua", + "America/Mazatlan", + "America/Chicago", + "America/Regina", + "America/Mexico_City", + "America/Mexico_City", + "America/Monterrey", + "America/Guatemala", + "America/New_York", + "America/Indiana/Indianapolis", + "America/Bogota", + "America/Lima", + "America/Lima", + "America/Halifax", + "America/Caracas", + "America/La_Paz", + "America/Santiago", + "America/St_Johns", + "America/Sao_Paulo", + "America/Argentina/Buenos_Aires", + "America/Guyana", + "America/Godthab", + "Atlantic/South_Georgia", + "Atlantic/Azores", + "Atlantic/Cape_Verde", + "Europa/Dublin", + "Europa/London", + "Europa/Lisbon", + "Europa/London", + "Africa/Casablanca", + "Africa/Monrovia", + "Etc/UTC", + "Europa/Belgrade", + "Europa/Bratislava", + "Europa/Budapest", + "Europa/Ljubljana", + "Europa/Prague", + "Europa/Sarajevo", + "Europa/Skopje", + "Europa/Warsaw", + "Europa/Zagreb", + "Europa/Brussels", + "Europa/Copenhagen", + "Europa/Madrid", + "Europa/Paris", + "Europa/Amsterdam", + "Europa/Berlin", + "Europa/Berlin", + "Europa/Rome", + "Europa/Stockholm", + "Europa/Vienna", + "Africa/Algiers", + "Europa/Bucharest", + "Africa/Cairo", + "Europa/Helsinki", + "Europa/Kiev", + "Europa/Riga", + "Europa/Sofia", + "Europa/Tallinn", + "Europa/Vilnius", + "Europa/Athens", + "Europa/Istanbul", + "Europa/Minsk", + "Asia/Jerusalen", + "Africa/Harare", + "Africa/Johannesburg", + "Europa/Moscú", + "Europa/Moscú", + "Europa/Moscú", + "Asia/Kuwait", + "Asia/Riyadh", + "Africa/Nairobi", + "Asia/Baghdad", + "Asia/Tehran", + "Asia/Muscat", + "Asia/Muscat", + "Asia/Baku", + "Asia/Tbilisi", + "Asia/Yerevan", + "Asia/Kabul", + "Asia/Yekaterinburg", + "Asia/Karachi", + "Asia/Karachi", + "Asia/Tashkent", + "Asia/Kolkata", + "Asia/Kolkata", + "Asia/Kolkata", + "Asia/Kolkata", + "Asia/Kathmandu", + "Asia/Dhaka", + "Asia/Dhaka", + "Asia/Colombo", + "Asia/Almaty", + "Asia/Novosibirsk", + "Asia/Rangoon", + "Asia/Bangkok", + "Asia/Bangkok", + "Asia/Jakarta", + "Asia/Krasnoyarsk", + "Asia/Shanghai", + "Asia/Chongqing", + "Asia/Hong_Kong", + "Asia/Urumqi", + "Asia/Kuala_Lumpur", + "Asia/Singapore", + "Asia/Taipei", + "Australia/Perth", + "Asia/Irkutsk", + "Asia/Ulaanbaatar", + "Asia/Seoul", + "Asia/Tokyo", + "Asia/Tokyo", + "Asia/Tokyo", + "Asia/Yakutsk", + "Australia/Darwin", + "Australia/Adelaide", + "Australia/Melbourne", + "Australia/Melbourne", + "Australia/Sydney", + "Australia/Brisbane", + "Australia/Hobart", + "Asia/Vladivostok", + "Pacífico/Guam", + "Pacífico/Port_Moresby", + "Asia/Magadan", + "Asia/Magadan", + "Pacífico/Noumea", + "Pacífico/Fiji", + "Asia/Kamchatka", + "Pacífico/Majuro", + "Pacífico/Auckland", + "Pacífico/Auckland", + "Pacífico/Tongatapu", + "Pacífico/Fakaofo", + "Pacífico/Apia" + ]; + +},{}],300:[function(require,module,exports){ + module["exports"] = [ + "6##-###-###", + "6##.###.###", + "6## ### ###", + "6########" + ]; + +},{}],301:[function(require,module,exports){ + arguments[4][29][0].apply(exports,arguments) +},{"./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", + "Equilibrado", + "Centrado en el negocio", + "Centralizado", + "Clonado", + "Compatible", + "Configurable", + "Multi grupo", + "Multi plataforma", + "Centrado en el usuario", + "Configurable", + "Descentralizado", + "Digitalizado", + "Distribuido", + "Diverso", + "Reducido", + "Mejorado", + "Para toda la empresa", + "Ergonomico", + "Exclusivo", + "Expandido", + "Extendido", + "Cara a cara", + "Enfocado", + "Totalmente configurable", + "Fundamental", + "Orígenes", + "Horizontal", + "Implementado", + "Innovador", + "Integrado", + "Intuitivo", + "Inverso", + "Gestionado", + "Obligatorio", + "Monitorizado", + "Multi canal", + "Multi lateral", + "Multi capa", + "En red", + "Orientado a objetos", + "Open-source", + "Operativo", + "Optimizado", + "Opcional", + "Organico", + "Organizado", + "Perseverando", + "Persistente", + "en fases", + "Polarizado", + "Pre-emptivo", + "Proactivo", + "Enfocado a benficios", + "Profundo", + "Programable", + "Progresivo", + "Public-key", + "Enfocado en la calidad", + "Reactivo", + "Realineado", + "Re-contextualizado", + "Re-implementado", + "Reducido", + "Ingenieria inversa", + "Robusto", + "Fácil", + "Seguro", + "Auto proporciona", + "Compartible", + "Intercambiable", + "Sincronizado", + "Orientado a equipos", + "Total", + "Universal", + "Mejorado", + "Actualizable", + "Centrado en el usuario", + "Amigable", + "Versatil", + "Virtual", + "Visionario" + ]; + +},{}],303:[function(require,module,exports){ + module["exports"] = [ + "24 horas", + "24/7", + "3rd generación", + "4th generación", + "5th generación", + "6th generación", + "analizada", + "asimétrica", + "asíncrona", + "monitorizada por red", + "bidireccional", + "bifurcada", + "generada por el cliente", + "cliente servidor", + "coherente", + "cohesiva", + "compuesto", + "sensible al contexto", + "basado en el contexto", + "basado en contenido", + "dedicada", + "generado por la demanda", + "didactica", + "direccional", + "discreta", + "dinámica", + "potenciada", + "acompasada", + "ejecutiva", + "explícita", + "tolerante a fallos", + "innovadora", + "amplio ábanico", + "global", + "heurística", + "alto nivel", + "holística", + "homogénea", + "hibrida", + "incremental", + "intangible", + "interactiva", + "intermedia", + "local", + "logística", + "maximizada", + "metódica", + "misión crítica", + "móbil", + "modular", + "motivadora", + "multimedia", + "multiestado", + "multitarea", + "nacional", + "basado en necesidades", + "neutral", + "nueva generación", + "no-volátil", + "orientado a objetos", + "óptima", + "optimizada", + "radical", + "tiempo real", + "recíproca", + "regional", + "escalable", + "secundaria", + "orientada a soluciones", + "estable", + "estatica", + "sistemática", + "sistémica", + "tangible", + "terciaria", + "transicional", + "uniforme", + "valor añadido", + "vía web", + "defectos cero", + "tolerancia cero" + ]; + +},{}],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":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" + ]; + +},{}],306:[function(require,module,exports){ + module["exports"] = [ + "habilidad", + "acceso", + "adaptador", + "algoritmo", + "alianza", + "analista", + "aplicación", + "enfoque", + "arquitectura", + "archivo", + "inteligencia artificial", + "array", + "actitud", + "medición", + "gestión presupuestaria", + "capacidad", + "desafío", + "circuito", + "colaboración", + "complejidad", + "concepto", + "conglomeración", + "contingencia", + "núcleo", + "fidelidad", + "base de datos", + "data-warehouse", + "definición", + "emulación", + "codificar", + "encriptar", + "extranet", + "firmware", + "flexibilidad", + "focus group", + "previsión", + "base de trabajo", + "función", + "funcionalidad", + "Interfaz Gráfica", + "groupware", + "Interfaz gráfico de usuario", + "hardware", + "Soporte", + "jerarquía", + "conjunto", + "implementación", + "infraestructura", + "iniciativa", + "instalación", + "conjunto de instrucciones", + "interfaz", + "intranet", + "base del conocimiento", + "red de area local", + "aprovechar", + "matrices", + "metodologías", + "middleware", + "migración", + "modelo", + "moderador", + "monitorizar", + "arquitectura abierta", + "sistema abierto", + "orquestar", + "paradigma", + "paralelismo", + "política", + "portal", + "estructura de precios", + "proceso de mejora", + "producto", + "productividad", + "proyecto", + "proyección", + "protocolo", + "línea segura", + "software", + "solución", + "estandardización", + "estrategia", + "estructura", + "éxito", + "superestructura", + "soporte", + "sinergia", + "mediante", + "marco de tiempo", + "caja de herramientas", + "utilización", + "website", + "fuerza de trabajo" + ]; + +},{}],307:[function(require,module,exports){ + module["exports"] = [ + "S.L.", + "e Hijos", + "S.A.", + "Hermanos" + ]; + +},{}],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":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" + ]; + +},{}],310:[function(require,module,exports){ + module.exports=require(36) +},{"/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":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", + "Alfonso", + "Alfredo", + "Andrés", + "Antonio", + "Armando", + "Arturo", + "Benito", + "Benjamín", + "Bernardo", + "Carlos", + "César", + "Claudio", + "Clemente", + "Cristian", + "Cristobal", + "Daniel", + "David", + "Diego", + "Eduardo", + "Emilio", + "Enrique", + "Ernesto", + "Esteban", + "Federico", + "Felipe", + "Fernando", + "Francisco", + "Gabriel", + "Gerardo", + "Germán", + "Gilberto", + "Gonzalo", + "Gregorio", + "Guillermo", + "Gustavo", + "Hernán", + "Homero", + "Horacio", + "Hugo", + "Ignacio", + "Jacobo", + "Jaime", + "Javier", + "Jerónimo", + "Jesús", + "Joaquín", + "Jorge", + "Jorge Luis", + "José", + "José Eduardo", + "José Emilio", + "José Luis", + "José María", + "Juan", + "Juan Carlos", + "Julio", + "Julio César", + "Lorenzo", + "Lucas", + "Luis", + "Luis Miguel", + "Manuel", + "Marco Antonio", + "Marcos", + "Mariano", + "Mario", + "Martín", + "Mateo", + "Miguel", + "Miguel Ángel", + "Nicolás", + "Octavio", + "Óscar", + "Pablo", + "Patricio", + "Pedro", + "Rafael", + "Ramiro", + "Ramón", + "Raúl", + "Ricardo", + "Roberto", + "Rodrigo", + "Rubén", + "Salvador", + "Samuel", + "Sancho", + "Santiago", + "Sergio", + "Teodoro", + "Timoteo", + "Tomás", + "Vicente", + "Víctor", + "Adela", + "Adriana", + "Alejandra", + "Alicia", + "Amalia", + "Ana", + "Ana Luisa", + "Ana María", + "Andrea", + "Anita", + "Ángela", + "Antonia", + "Ariadna", + "Barbara", + "Beatriz", + "Berta", + "Blanca", + "Caridad", + "Carla", + "Carlota", + "Carmen", + "Carolina", + "Catalina", + "Cecilia", + "Clara", + "Claudia", + "Concepción", + "Conchita", + "Cristina", + "Daniela", + "Débora", + "Diana", + "Dolores", + "Lola", + "Dorotea", + "Elena", + "Elisa", + "Eloisa", + "Elsa", + "Elvira", + "Emilia", + "Esperanza", + "Estela", + "Ester", + "Eva", + "Florencia", + "Francisca", + "Gabriela", + "Gloria", + "Graciela", + "Guadalupe", + "Guillermina", + "Inés", + "Irene", + "Isabel", + "Isabela", + "Josefina", + "Juana", + "Julia", + "Laura", + "Leonor", + "Leticia", + "Lilia", + "Lorena", + "Lourdes", + "Lucia", + "Luisa", + "Luz", + "Magdalena", + "Manuela", + "Marcela", + "Margarita", + "María", + "María del Carmen", + "María Cristina", + "María Elena", + "María Eugenia", + "María José", + "María Luisa", + "María Soledad", + "María Teresa", + "Mariana", + "Maricarmen", + "Marilu", + "Marisol", + "Marta", + "Mayte", + "Mercedes", + "Micaela", + "Mónica", + "Natalia", + "Norma", + "Olivia", + "Patricia", + "Pilar", + "Ramona", + "Raquel", + "Rebeca", + "Reina", + "Rocio", + "Rosa", + "Rosalia", + "Rosario", + "Sara", + "Silvia", + "Sofia", + "Soledad", + "Sonia", + "Susana", + "Teresa", + "Verónica", + "Victoria", + "Virginia", + "Yolanda" + ]; + +},{}],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", + "Acosta", + "Acuña", + "Adame", + "Adorno", + "Agosto", + "Aguayo", + "Águilar", + "Aguilera", + "Aguirre", + "Alanis", + "Alaniz", + "Alarcón", + "Alba", + "Alcala", + "Alcántar", + "Alcaraz", + "Alejandro", + "Alemán", + "Alfaro", + "Alicea", + "Almanza", + "Almaraz", + "Almonte", + "Alonso", + "Alonzo", + "Altamirano", + "Alva", + "Alvarado", + "Alvarez", + "Amador", + "Amaya", + "Anaya", + "Anguiano", + "Angulo", + "Aparicio", + "Apodaca", + "Aponte", + "Aragón", + "Araña", + "Aranda", + "Arce", + "Archuleta", + "Arellano", + "Arenas", + "Arevalo", + "Arguello", + "Arias", + "Armas", + "Armendáriz", + "Armenta", + "Armijo", + "Arredondo", + "Arreola", + "Arriaga", + "Arroyo", + "Arteaga", + "Atencio", + "Ávalos", + "Ávila", + "Avilés", + "Ayala", + "Baca", + "Badillo", + "Báez", + "Baeza", + "Bahena", + "Balderas", + "Ballesteros", + "Banda", + "Bañuelos", + "Barajas", + "Barela", + "Barragán", + "Barraza", + "Barrera", + "Barreto", + "Barrientos", + "Barrios", + "Batista", + "Becerra", + "Beltrán", + "Benavides", + "Benavídez", + "Benítez", + "Bermúdez", + "Bernal", + "Berríos", + "Bétancourt", + "Blanco", + "Bonilla", + "Borrego", + "Botello", + "Bravo", + "Briones", + "Briseño", + "Brito", + "Bueno", + "Burgos", + "Bustamante", + "Bustos", + "Caballero", + "Cabán", + "Cabrera", + "Cadena", + "Caldera", + "Calderón", + "Calvillo", + "Camacho", + "Camarillo", + "Campos", + "Canales", + "Candelaria", + "Cano", + "Cantú", + "Caraballo", + "Carbajal", + "Cardenas", + "Cardona", + "Carmona", + "Carranza", + "Carrasco", + "Carrasquillo", + "Carreón", + "Carrera", + "Carrero", + "Carrillo", + "Carrion", + "Carvajal", + "Casanova", + "Casares", + "Casárez", + "Casas", + "Casillas", + "Castañeda", + "Castellanos", + "Castillo", + "Castro", + "Cavazos", + "Cazares", + "Ceballos", + "Cedillo", + "Ceja", + "Centeno", + "Cepeda", + "Cerda", + "Cervantes", + "Cervántez", + "Chacón", + "Chapa", + "Chavarría", + "Chávez", + "Cintrón", + "Cisneros", + "Collado", + "Collazo", + "Colón", + "Colunga", + "Concepción", + "Contreras", + "Cordero", + "Córdova", + "Cornejo", + "Corona", + "Coronado", + "Corral", + "Corrales", + "Correa", + "Cortés", + "Cortez", + "Cotto", + "Covarrubias", + "Crespo", + "Cruz", + "Cuellar", + "Curiel", + "Dávila", + "de Anda", + "de Jesús", + "Delacrúz", + "Delafuente", + "Delagarza", + "Delao", + "Delapaz", + "Delarosa", + "Delatorre", + "Deleón", + "Delgadillo", + "Delgado", + "Delrío", + "Delvalle", + "Díaz", + "Domínguez", + "Domínquez", + "Duarte", + "Dueñas", + "Duran", + "Echevarría", + "Elizondo", + "Enríquez", + "Escalante", + "Escamilla", + "Escobar", + "Escobedo", + "Esparza", + "Espinal", + "Espino", + "Espinosa", + "Espinoza", + "Esquibel", + "Esquivel", + "Estévez", + "Estrada", + "Fajardo", + "Farías", + "Feliciano", + "Fernández", + "Ferrer", + "Fierro", + "Figueroa", + "Flores", + "Flórez", + "Fonseca", + "Franco", + "Frías", + "Fuentes", + "Gaitán", + "Galarza", + "Galindo", + "Gallardo", + "Gallegos", + "Galván", + "Gálvez", + "Gamboa", + "Gamez", + "Gaona", + "Garay", + "García", + "Garibay", + "Garica", + "Garrido", + "Garza", + "Gastélum", + "Gaytán", + "Gil", + "Girón", + "Godínez", + "Godoy", + "Gómez", + "Gonzales", + "González", + "Gollum", + "Gracia", + "Granado", + "Granados", + "Griego", + "Grijalva", + "Guajardo", + "Guardado", + "Guerra", + "Guerrero", + "Guevara", + "Guillen", + "Gurule", + "Gutiérrez", + "Guzmán", + "Haro", + "Henríquez", + "Heredia", + "Hernádez", + "Hernandes", + "Hernández", + "Herrera", + "Hidalgo", + "Hinojosa", + "Holguín", + "Huerta", + "Hurtado", + "Ibarra", + "Iglesias", + "Irizarry", + "Jaime", + "Jaimes", + "Jáquez", + "Jaramillo", + "Jasso", + "Jiménez", + "Jimínez", + "Juárez", + "Jurado", + "Laboy", + "Lara", + "Laureano", + "Leal", + "Lebrón", + "Ledesma", + "Leiva", + "Lemus", + "León", + "Lerma", + "Leyva", + "Limón", + "Linares", + "Lira", + "Llamas", + "Loera", + "Lomeli", + "Longoria", + "López", + "Lovato", + "Loya", + "Lozada", + "Lozano", + "Lucero", + "Lucio", + "Luevano", + "Lugo", + "Luna", + "Macías", + "Madera", + "Madrid", + "Madrigal", + "Maestas", + "Magaña", + "Malave", + "Maldonado", + "Manzanares", + "Mares", + "Marín", + "Márquez", + "Marrero", + "Marroquín", + "Martínez", + "Mascareñas", + "Mata", + "Mateo", + "Matías", + "Matos", + "Maya", + "Mayorga", + "Medina", + "Medrano", + "Mejía", + "Meléndez", + "Melgar", + "Mena", + "Menchaca", + "Méndez", + "Mendoza", + "Menéndez", + "Meraz", + "Mercado", + "Merino", + "Mesa", + "Meza", + "Miramontes", + "Miranda", + "Mireles", + "Mojica", + "Molina", + "Mondragón", + "Monroy", + "Montalvo", + "Montañez", + "Montaño", + "Montemayor", + "Montenegro", + "Montero", + "Montes", + "Montez", + "Montoya", + "Mora", + "Morales", + "Moreno", + "Mota", + "Moya", + "Munguía", + "Muñiz", + "Muñoz", + "Murillo", + "Muro", + "Nájera", + "Naranjo", + "Narváez", + "Nava", + "Navarrete", + "Navarro", + "Nazario", + "Negrete", + "Negrón", + "Nevárez", + "Nieto", + "Nieves", + "Niño", + "Noriega", + "Núñez", + "Ocampo", + "Ocasio", + "Ochoa", + "Ojeda", + "Olivares", + "Olivárez", + "Olivas", + "Olivera", + "Olivo", + "Olmos", + "Olvera", + "Ontiveros", + "Oquendo", + "Ordóñez", + "Orellana", + "Ornelas", + "Orosco", + "Orozco", + "Orta", + "Ortega", + "Ortiz", + "Osorio", + "Otero", + "Ozuna", + "Pabón", + "Pacheco", + "Padilla", + "Padrón", + "Páez", + "Pagan", + "Palacios", + "Palomino", + "Palomo", + "Pantoja", + "Paredes", + "Parra", + "Partida", + "Patiño", + "Paz", + "Pedraza", + "Pedroza", + "Pelayo", + "Peña", + "Perales", + "Peralta", + "Perea", + "Peres", + "Pérez", + "Pichardo", + "Piña", + "Pineda", + "Pizarro", + "Polanco", + "Ponce", + "Porras", + "Portillo", + "Posada", + "Prado", + "Preciado", + "Prieto", + "Puente", + "Puga", + "Pulido", + "Quesada", + "Quezada", + "Quiñones", + "Quiñónez", + "Quintana", + "Quintanilla", + "Quintero", + "Quiroz", + "Rael", + "Ramírez", + "Ramón", + "Ramos", + "Rangel", + "Rascón", + "Raya", + "Razo", + "Regalado", + "Rendón", + "Rentería", + "Reséndez", + "Reyes", + "Reyna", + "Reynoso", + "Rico", + "Rincón", + "Riojas", + "Ríos", + "Rivas", + "Rivera", + "Rivero", + "Robledo", + "Robles", + "Rocha", + "Rodarte", + "Rodrígez", + "Rodríguez", + "Rodríquez", + "Rojas", + "Rojo", + "Roldán", + "Rolón", + "Romero", + "Romo", + "Roque", + "Rosado", + "Rosales", + "Rosario", + "Rosas", + "Roybal", + "Rubio", + "Ruelas", + "Ruiz", + "Saavedra", + "Sáenz", + "Saiz", + "Salas", + "Salazar", + "Salcedo", + "Salcido", + "Saldaña", + "Saldivar", + "Salgado", + "Salinas", + "Samaniego", + "Sanabria", + "Sanches", + "Sánchez", + "Sandoval", + "Santacruz", + "Santana", + "Santiago", + "Santillán", + "Sarabia", + "Sauceda", + "Saucedo", + "Sedillo", + "Segovia", + "Segura", + "Sepúlveda", + "Serna", + "Serrano", + "Serrato", + "Sevilla", + "Sierra", + "Sisneros", + "Solano", + "Solís", + "Soliz", + "Solorio", + "Solorzano", + "Soria", + "Sosa", + "Sotelo", + "Soto", + "Suárez", + "Tafoya", + "Tamayo", + "Tamez", + "Tapia", + "Tejada", + "Tejeda", + "Téllez", + "Tello", + "Terán", + "Terrazas", + "Tijerina", + "Tirado", + "Toledo", + "Toro", + "Torres", + "Tórrez", + "Tovar", + "Trejo", + "Treviño", + "Trujillo", + "Ulibarri", + "Ulloa", + "Urbina", + "Ureña", + "Urías", + "Uribe", + "Urrutia", + "Vaca", + "Valadez", + "Valdés", + "Valdez", + "Valdivia", + "Valencia", + "Valentín", + "Valenzuela", + "Valladares", + "Valle", + "Vallejo", + "Valles", + "Valverde", + "Vanegas", + "Varela", + "Vargas", + "Vásquez", + "Vázquez", + "Vega", + "Vela", + "Velasco", + "Velásquez", + "Velázquez", + "Vélez", + "Véliz", + "Venegas", + "Vera", + "Verdugo", + "Verduzco", + "Vergara", + "Viera", + "Vigil", + "Villa", + "Villagómez", + "Villalobos", + "Villalpando", + "Villanueva", + "Villareal", + "Villarreal", + "Villaseñor", + "Villegas", + "Yáñez", + "Ybarra", + "Zambrano", + "Zamora", + "Zamudio", + "Zapata", + "Zaragoza", + "Zarate", + "Zavala", + "Zayas", + "Zelaya", + "Zepeda", + "Zúñiga" + ]; + +},{}],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}" + ]; + +},{}],316:[function(require,module,exports){ + module["exports"] = [ + "Sr.", + "Sra.", + "Sta." + ]; + +},{}],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", + "Corporativo", + "Dinánmico", + "Futuro", + "Producto", + "Nacional", + "Regional", + "Distrito", + "Central", + "Global", + "Cliente", + "Inversor", + "International", + "Heredado", + "Adelante", + "Interno", + "Humano", + "Gerente", + "Director" + ], + "level": [ + "Soluciones", + "Programa", + "Marca", + "Seguridada", + "Investigación", + "Marketing", + "Normas", + "Implementación", + "Integración", + "Funcionalidad", + "Respuesta", + "Paradigma", + "Tácticas", + "Identidad", + "Mercados", + "Grupo", + "División", + "Aplicaciones", + "Optimización", + "Operaciones", + "Infraestructura", + "Intranet", + "Comunicaciones", + "Web", + "Calidad", + "Seguro", + "Mobilidad", + "Cuentas", + "Datos", + "Creativo", + "Configuración", + "Contabilidad", + "Interacciones", + "Factores", + "Usabilidad", + "Métricas" + ], + "job": [ + "Supervisor", + "Asociado", + "Ejecutivo", + "Relacciones", + "Oficial", + "Gerente", + "Ingeniero", + "Especialista", + "Director", + "Coordinador", + "Administrador", + "Arquitecto", + "Analista", + "Diseñador", + "Planificador", + "Técnico", + "Funcionario", + "Desarrollador", + "Productor", + "Consultor", + "Asistente", + "Facilitador", + "Agente", + "Representante", + "Estratega" + ] + }; + +},{}],319:[function(require,module,exports){ + module["exports"] = [ + "9##-###-###", + "9##.###.###", + "9## ### ###", + "9########" + ]; + +},{}],320:[function(require,module,exports){ + arguments[4][47][0].apply(exports,arguments) +},{"./formats":319,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],321:[function(require,module,exports){ + module["exports"] = [ + " s/n.", + ", #", + ", ##", + " #", + " ##", + " ###", + " ####" + ]; + +},{}],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", + "Cancún", + "Cárdenas", + "Celaya", + "Chalco", + "Chetumal", + "Chicoloapan", + "Chignahuapan", + "Chihuahua", + "Chilpancingo", + "Chimalhuacán", + "Ciudad Acuña", + "Ciudad de México", + "Ciudad del Carmen", + "Ciudad López Mateos", + "Ciudad Madero", + "Ciudad Obregón", + "Ciudad Valles", + "Ciudad Victoria", + "Coatzacoalcos", + "Colima-Villa de Álvarez", + "Comitán de Dominguez", + "Córdoba", + "Cuautitlán Izcalli", + "Cuautla", + "Cuernavaca", + "Culiacán", + "Delicias", + "Durango", + "Ensenada", + "Fresnillo", + "General Escobedo", + "Gómez Palacio", + "Guadalajara", + "Guadalupe", + "Guanajuato", + "Guaymas", + "Hermosillo", + "Hidalgo del Parral", + "Iguala", + "Irapuato", + "Ixtapaluca", + "Jiutepec", + "Juárez", + "La Laguna", + "La Paz", + "La Piedad-Pénjamo", + "León", + "Los Cabos", + "Los Mochis", + "Manzanillo", + "Matamoros", + "Mazatlán", + "Mérida", + "Mexicali", + "Minatitlán", + "Miramar", + "Monclova", + "Monclova-Frontera", + "Monterrey", + "Morelia", + "Naucalpan de Juárez", + "Navojoa", + "Nezahualcóyotl", + "Nogales", + "Nuevo Laredo", + "Oaxaca", + "Ocotlán", + "Ojo de agua", + "Orizaba", + "Pachuca", + "Piedras Negras", + "Poza Rica", + "Puebla", + "Puerto Vallarta", + "Querétaro", + "Reynosa-Río Bravo", + "Rioverde-Ciudad Fernández", + "Salamanca", + "Saltillo", + "San Cristobal de las Casas", + "San Francisco Coacalco", + "San Francisco del Rincón", + "San Juan Bautista Tuxtepec", + "San Juan del Río", + "San Luis Potosí-Soledad", + "San Luis Río Colorado", + "San Nicolás de los Garza", + "San Pablo de las Salinas", + "San Pedro Garza García", + "Santa Catarina", + "Soledad de Graciano Sánchez", + "Tampico-Pánuco", + "Tapachula", + "Tecomán", + "Tehuacán", + "Tehuacán", + "Tehuantepec-Salina Cruz", + "Tepexpan", + "Tepic", + "Tetela de Ocampo", + "Texcoco de Mora", + "Tijuana", + "Tlalnepantla", + "Tlaquepaque", + "Tlaxcala-Apizaco", + "Toluca", + "Tonalá", + "Torreón", + "Tula", + "Tulancingo", + "Tulancingo de Bravo", + "Tuxtla Gutiérrez", + "Uruapan", + "Uruapan del Progreso", + "Valle de México", + "Veracruz", + "Villa de Álvarez", + "Villa Nicolás Romero", + "Villahermosa", + "Xalapa", + "Zacatecas-Guadalupe", + "Zacatlan", + "Zacatzingo", + "Zamora-Jacona", + "Zapopan", + "Zitacuaro" + ]; + +},{}],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", + "Angola", + "Argentina", + "Armenia", + "Aruba", + "Australia", + "Austria", + "Azerbayán", + "Bahamas", + "Barein", + "Bangladesh", + "Barbados", + "Bielorusia", + "Bélgica", + "Belice", + "Bermuda", + "Bután", + "Bolivia", + "Bosnia Herzegovina", + "Botswana", + "Brasil", + "Bulgaria", + "Burkina Faso", + "Burundi", + "Camboya", + "Camerún", + "Canada", + "Cabo Verde", + "Islas Caimán", + "Chad", + "Chile", + "China", + "Isla de Navidad", + "Colombia", + "Comodos", + "Congo", + "Costa Rica", + "Costa de Marfil", + "Croacia", + "Cuba", + "Chipre", + "República Checa", + "Dinamarca", + "Dominica", + "República Dominicana", + "Ecuador", + "Egipto", + "El Salvador", + "Guinea Ecuatorial", + "Eritrea", + "Estonia", + "Etiopía", + "Islas Faro", + "Fiji", + "Finlandia", + "Francia", + "Gabón", + "Gambia", + "Georgia", + "Alemania", + "Ghana", + "Grecia", + "Groenlandia", + "Granada", + "Guadalupe", + "Guam", + "Guatemala", + "Guinea", + "Guinea-Bisau", + "Guayana", + "Haiti", + "Honduras", + "Hong Kong", + "Hungria", + "Islandia", + "India", + "Indonesia", + "Iran", + "Irak", + "Irlanda", + "Italia", + "Jamaica", + "Japón", + "Jordania", + "Kazajistan", + "Kenia", + "Kiribati", + "Corea", + "Kuwait", + "Letonia", + "Líbano", + "Liberia", + "Liechtenstein", + "Lituania", + "Luxemburgo", + "Macao", + "Macedonia", + "Madagascar", + "Malawi", + "Malasia", + "Maldivas", + "Mali", + "Malta", + "Martinica", + "Mauritania", + "México", + "Micronesia", + "Moldavia", + "Mónaco", + "Mongolia", + "Montenegro", + "Montserrat", + "Marruecos", + "Mozambique", + "Namibia", + "Nauru", + "Nepal", + "Holanda", + "Nueva Zelanda", + "Nicaragua", + "Niger", + "Nigeria", + "Noruega", + "Omán", + "Pakistan", + "Panamá", + "Papúa Nueva Guinea", + "Paraguay", + "Perú", + "Filipinas", + "Poland", + "Portugal", + "Puerto Rico", + "Rusia", + "Ruanda", + "Samoa", + "San Marino", + "Santo Tomé y Principe", + "Arabia Saudí", + "Senegal", + "Serbia", + "Seychelles", + "Sierra Leona", + "Singapur", + "Eslovaquia", + "Eslovenia", + "Somalia", + "España", + "Sri Lanka", + "Sudán", + "Suriname", + "Suecia", + "Suiza", + "Siria", + "Taiwan", + "Tajikistan", + "Tanzania", + "Tailandia", + "Timor-Leste", + "Togo", + "Tonga", + "Trinidad y Tobago", + "Tunez", + "Turquia", + "Uganda", + "Ucrania", + "Emiratos Árabes Unidos", + "Reino Unido", + "Estados Unidos de América", + "Uruguay", + "Uzbekistan", + "Vanuatu", + "Venezuela", + "Vietnam", + "Yemen", + "Zambia", + "Zimbabwe" + ]; + +},{}],326:[function(require,module,exports){ + module["exports"] = [ + "México" + ]; + +},{}],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"); + address.building_number = require("./building_number"); + address.street_suffix = require("./street_suffix"); + address.secondary_address = require("./secondary_address"); + address.postcode = require("./postcode"); + address.state = require("./state"); + address.state_abbr = require("./state_abbr"); + address.time_zone = require("./time_zone"); + 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":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 #" + ]; + +},{}],330:[function(require,module,exports){ + module["exports"] = [ + "Aguascalientes", + "Baja California Norte", + "Baja California Sur", + 'Estado de México', + "Campeche", + "Chiapas", + "Chihuahua", + "Coahuila", + "Colima", + "Durango", + "Guanajuato", + "Guerrero", + "Hidalgo", + "Jalisco", + "Michoacan", + "Morelos", + "Nayarit", + 'Nuevo León', + "Oaxaca", + "Puebla", + "Querétaro", + "Quintana Roo", + "San Luis Potosí", + "Sinaloa", + "Sonora", + "Tabasco", + "Tamaulipas", + "Tlaxcala", + "Veracruz", + "Yucatán", + "Zacatecas" + ]; + +},{}],331:[function(require,module,exports){ + module["exports"] = [ + "AS", + "BC", + "BS", + "CC", + "CS", + "CH", + "CL", + "CM", + "DF", + "DG", + "GT", + "GR", + "HG", + "JC", + "MC", + "MN", + "MS", + "NT", + "NL", + "OC", + "PL", + "QT", + "QR", + "SP", + "SL", + "SR", + "TC", + "TS", + "TL", + "VZ", + "YN", + "ZS" + ]; + +},{}],332:[function(require,module,exports){ + module["exports"] = [ + "20 de Noviembre", + "Cinco de Mayo", + "Cuahutemoc", + "Manzanares", + "Donceles", + "Francisco I. Madero", + "Juárez", + "Repúplica de Cuba", + "Repúplica de Chile", + "Repúplica de Argentina", + "Repúplica de Uruguay", + "Isabel la Católica", + "Izazaga", + "Eje Central", + "Eje 6", + "Eje 5", + "La viga", + "Aniceto Ortega", + "Miguel Ángel de Quevedo", + "Amores", + "Coyoacán", + "Coruña", + "Batalla de Naco", + "La otra banda", + "Piedra del Comal", + "Balcón de los edecanes", + "Barrio la Lonja", + "Jicolapa", + "Zacatlán", + "Zapata", + "Polotitlan", + "Calimaya", + "Flor Marina", + "Flor Solvestre", + "San Miguel", + "Naranjo", + "Cedro", + "Jalisco", + "Avena" + ]; +},{}],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}" + + ]; + +},{}],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", + "America/Los_Angeles", + "America/Tijuana", + "America/Denver", + "America/Phoenix", + "America/Chihuahua", + "America/Mazatlan", + "America/Chicago", + "America/Regina", + "America/Mexico_City", + "America/Monterrey", + "America/Guatemala", + "America/New_York", + "America/Indiana/Indianapolis", + "America/Bogota", + "America/Lima", + "America/Lima", + "America/Halifax", + "America/Caracas", + "America/La_Paz", + "America/Santiago", + "America/St_Johns", + "America/Sao_Paulo", + "America/Argentina/Buenos_Aires", + "America/Guyana", + "America/Godthab", + "Atlantic/South_Georgia", + "Atlantic/Azores", + "Atlantic/Cape_Verde", + "Europa/Dublin", + "Europa/London", + "Europa/Lisbon", + "Europa/London", + "Africa/Casablanca", + "Africa/Monrovia", + "Etc/UTC", + "Europa/Belgrade", + "Europa/Bratislava", + "Europa/Budapest", + "Europa/Ljubljana", + "Europa/Prague", + "Europa/Sarajevo", + "Europa/Skopje", + "Europa/Warsaw", + "Europa/Zagreb", + "Europa/Brussels", + "Europa/Copenhagen", + "Europa/Madrid", + "Europa/Paris", + "Europa/Amsterdam", + "Europa/Berlin", + "Europa/Berlin", + "Europa/Rome", + "Europa/Stockholm", + "Europa/Vienna", + "Africa/Algiers", + "Europa/Bucharest", + "Africa/Cairo", + "Europa/Helsinki", + "Europa/Kiev", + "Europa/Riga", + "Europa/Sofia", + "Europa/Tallinn", + "Europa/Vilnius", + "Europa/Athens", + "Europa/Istanbul", + "Europa/Minsk", + "Asia/Jerusalen", + "Africa/Harare", + "Africa/Johannesburg", + "Europa/Moscú", + "Europa/Moscú", + "Europa/Moscú", + "Asia/Kuwait", + "Asia/Riyadh", + "Africa/Nairobi", + "Asia/Baghdad", + "Asia/Tehran", + "Asia/Muscat", + "Asia/Muscat", + "Asia/Baku", + "Asia/Tbilisi", + "Asia/Yerevan", + "Asia/Kabul", + "Asia/Yekaterinburg", + "Asia/Karachi", + "Asia/Karachi", + "Asia/Tashkent", + "Asia/Kolkata", + "Asia/Kolkata", + "Asia/Kolkata", + "Asia/Kolkata", + "Asia/Kathmandu", + "Asia/Dhaka", + "Asia/Dhaka", + "Asia/Colombo", + "Asia/Almaty", + "Asia/Novosibirsk", + "Asia/Rangoon", + "Asia/Bangkok", + "Asia/Bangkok", + "Asia/Jakarta", + "Asia/Krasnoyarsk", + "Asia/Shanghai", + "Asia/Chongqing", + "Asia/Hong_Kong", + "Asia/Urumqi", + "Asia/Kuala_Lumpur", + "Asia/Singapore", + "Asia/Taipei", + "Australia/Perth", + "Asia/Irkutsk", + "Asia/Ulaanbaatar", + "Asia/Seoul", + "Asia/Tokyo", + "Asia/Tokyo", + "Asia/Tokyo", + "Asia/Yakutsk", + "Australia/Darwin", + "Australia/Adelaide", + "Australia/Melbourne", + "Australia/Melbourne", + "Australia/Sydney", + "Australia/Brisbane", + "Australia/Hobart", + "Asia/Vladivostok", + "Pacífico/Guam", + "Pacífico/Port_Moresby", + "Asia/Magadan", + "Asia/Magadan", + "Pacífico/Noumea", + "Pacífico/Fiji", + "Asia/Kamchatka", + "Pacífico/Majuro", + "Pacífico/Auckland", + "Pacífico/Auckland", + "Pacífico/Tongatapu", + "Pacífico/Fakaofo", + "Pacífico/Apia" + ]; + +},{}],337:[function(require,module,exports){ + module["exports"] = [ + "5##-###-###", + "5##.###.###", + "5## ### ###", + "5########" + ]; + +},{}],338:[function(require,module,exports){ + arguments[4][29][0].apply(exports,arguments) +},{"./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" + ]; + +},{}],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" + ]; + +},{}],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" + ], + "material": [ + "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" + ] + }; + +},{}],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" + ]; + +},{}],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" + ]; + +},{}],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" + ] + +},{}],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"); + company.noun = require("./noun"); + company.bs_verb = require("./bs_verb"); + company.name = require("./name"); + company.bs_adjective = require("./bs_adjective"); + company.bs_noun = require("./bs_noun"); + +},{"./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"); + es_MX.address = require("./address"); + es_MX.company = require("./company"); + es_MX.internet = require("./internet"); + 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":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" + ]; + +},{}],354:[function(require,module,exports){ + module["exports"] = [ + "gmail.com", + "yahoo.com", + "hotmail.com", + "nearbpo.com", + "corpfolder.com" + ]; + +},{}],355:[function(require,module,exports){ + arguments[4][37][0].apply(exports,arguments) +},{"./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", + "Abaco", + "Abacora", + "Abacorar", + "Abad", + "Abada", + "Abadejo", + "Abadengo", + "Abadernar", + "Abadesa", + "Abadí", + "Abadía", + "Abadiado", + "Abadiato", + "Abajadero", + "Abajamiento", + "Abajar", + "Abajeño", + "Abajera", + "Abajo", + "Abalada", + "Abalanzar", + "Abalar", + "Abalaustrado", + "Abaldonadamente", + "Abaldonamiento", + "Bastonada", + "Bastonazo", + "Bastoncillo", + "Bastonear", + "Bastonero", + "Bástulo", + "Basura", + "Basural", + "Basurear", + "Basurero", + "Bata", + "Batacazo", + "Batahola", + "Batalán", + "Batalla", + "Batallador", + "Batallar", + "Batallaroso", + "Batallola", + "Batallón", + "Batallona", + "Batalloso", + "Batán", + "Batanar", + "Batanear", + "Batanero", + "Batanga", + "Bataola", + "Batata", + "Batatazo", + "Batato", + "Batavia", + "Bátavo", + "Batayola", + "Batazo", + "Bate", + "Batea", + "Bateador", + "Bateaguas", + "Cenagar", + "Cenagoso", + "Cenal", + "Cenaoscuras", + "Ceñar", + "Cenata", + "Cenca", + "Cencapa", + "Cencellada", + "Cenceñada", + "Cenceño", + "Cencero", + "Cencerra", + "Cencerrada", + "Cencerrado", + "Cencerrear", + "Cencerreo", + "Cencerril", + "Cencerrillas", + "Cencerro", + "Cencerrón", + "Cencha", + "Cencido", + "Cencío", + "Cencivera", + "Cenco", + "Cencuate", + "Cendal", + "Cendalí", + "Céndea", + "Cendolilla", + "Cendra", + "Cendrada", + "Cendradilla", + "Cendrado", + "Cendrar", + "Cendrazo", + "Cenefa", + "Cenegar", + "Ceneque", + "Cenero", + "Cenestesia", + "Desceñir", + "Descensión", + "Descenso", + "Descentrado", + "Descentralización", + "Descentralizador", + "Descentralizar", + "Descentrar", + "Descepar", + "Descerar", + "Descercado", + "Descercador", + "Descercar", + "Descerco", + "Descerebración", + "Descerebrado", + "Descerebrar", + "Descerezar", + "Descerrajado", + "Descerrajadura", + "Descerrajar", + "Descerrar", + "Descerrumarse", + "Descervigamiento", + "Descervigar", + "Deschapar", + "Descharchar", + "Deschavetado", + "Deschavetarse", + "Deschuponar", + "Descifrable", + "Descifrador", + "Desciframiento", + "Descifrar", + "Descifre", + "Descimbramiento", + "Descimbrar", + "Engarbarse", + "Engarberar", + "Engarbullar", + "Engarce", + "Engarfiar", + "Engargantadura", + "Engargantar", + "Engargante", + "Engargolado", + "Engargolar", + "Engaritar", + "Engarmarse", + "Engarnio", + "Engarrafador", + "Engarrafar", + "Engarrar", + "Engarro", + "Engarronar", + "Engarrotar", + "Engarzador", + "Engarzadura", + "Engarzar", + "Engasgarse", + "Engastador", + "Engastadura", + "Engastar", + "Engaste", + "Ficción", + "Fice", + "Ficha", + "Fichaje", + "Fichar", + "Fichero", + "Ficoideo", + "Ficticio", + "Fidalgo", + "Fidecomiso", + "Fidedigno", + "Fideero", + "Fideicomisario", + "Fideicomiso", + "Fideicomitente", + "Fideísmo", + "Fidelidad", + "Fidelísimo", + "Fideo", + "Fido", + "Fiducia", + "Geminación", + "Geminado", + "Geminar", + "Géminis", + "Gémino", + "Gemíparo", + "Gemiquear", + "Gemiqueo", + "Gemir", + "Gemología", + "Gemológico", + "Gemólogo", + "Gemonias", + "Gemoso", + "Gemoterapia", + "Gen", + "Genciana", + "Gencianáceo", + "Gencianeo", + "Gendarme", + "Gendarmería", + "Genealogía", + "Genealógico", + "Genealogista", + "Genearca", + "Geneático", + "Generable", + "Generación", + "Generacional", + "Generador", + "General", + "Generala", + "Generalato", + "Generalidad", + "Generalísimo", + "Incordio", + "Incorporación", + "Incorporal", + "Incorporalmente", + "Incorporar", + "Incorporeidad", + "Incorpóreo", + "Incorporo", + "Incorrección", + "Incorrectamente", + "Incorrecto", + "Incorregibilidad", + "Incorregible", + "Incorregiblemente", + "Incorrupción", + "Incorruptamente", + "Incorruptibilidad", + "Incorruptible", + "Incorrupto", + "Incrasar", + "Increado", + "Incredibilidad", + "Incrédulamente", + "Incredulidad", + "Incrédulo", + "Increíble", + "Increíblemente", + "Incrementar", + "Incremento", + "Increpación", + "Increpador", + "Increpar", + "Incriminación", + "Incriminar", + "Incristalizable", + "Incruentamente", + "Incruento", + "Incrustación" + ]; + +},{}],359:[function(require,module,exports){ + module["exports"] = [ + "Aarón", + "Abraham", + "Adán", + "Agustín", + "Alan", + "Alberto", + "Alejandro", + "Alexander", + "Alexis", + "Alfonso", + "Alfredo", + "Andrés", + "Ángel Daniel", + "Ángel Gabriel", + "Antonio", + "Armando", + "Arturo", + "Axel", + "Benito", + "Benjamín", + "Bernardo", + "Brandon", + "Brayan", + "Carlos", + "César", + "Claudio", + "Clemente", + "Cristian", + "Cristobal", + "Damián", + "Daniel", + "David", + "Diego", + "Eduardo", + "Elías", + "Emiliano", + "Emilio", + "Emilio", + "Emmanuel", + "Enrique", + "Erick", + "Ernesto", + "Esteban", + "Federico", + "Felipe", + "Fernando", + "Fernando Javier", + "Francisco", + "Francisco Javier", + "Gabriel", + "Gael", + "Gerardo", + "Germán", + "Gilberto", + "Gonzalo", + "Gregorio", + "Guillermo", + "Gustavo", + "Hernán", + "Homero", + "Horacio", + "Hugo", + "Ignacio", + "Iker", + "Isaac", + "Isaias", + "Israel", + "Ivan", + "Jacobo", + "Jaime", + "Javier", + "Jerónimo", + "Jesús", + "Joaquín", + "Jorge", + "Jorge Luis", + "José", + "José Antonio", + "Jose Daniel", + "José Eduardo", + "José Emilio", + "José Luis", + "José María", + "José Miguel", + "Juan", + "Juan Carlos", + "Juan Manuel", + "Juan Pablo", + "Julio", + "Julio César", + "Kevin", + "Leonardo", + "Lorenzo", + "Lucas", + "Luis", + "Luis Ángel", + "Luis Fernando", + "Luis Gabino", + "Luis Miguel", + "Manuel", + "Marco Antonio", + "Marcos", + "Mariano", + "Mario", + "Martín", + "Mateo", + "Matías", + "Mauricio", + "Maximiliano", + "Miguel", + "Miguel Ángel", + "Nicolás", + "Octavio", + "Óscar", + "Pablo", + "Patricio", + "Pedro", + "Rafael", + "Ramiro", + "Ramón", + "Raúl", + "Ricardo", + "Roberto", + "Rodrigo", + "Rubén", + "Salvador", + "Samuel", + "Sancho", + "Santiago", + "Saúl", + "Sebastian", + "Sergio", + "Tadeo", + "Teodoro", + "Timoteo", + "Tomás", + "Uriel", + "Vicente", + "Víctor", + "Victor Manuel", + "Adriana", + "Alejandra", + "Alicia", + "Amalia", + "Ana", + "Ana Luisa", + "Ana María", + "Andrea", + "Ángela", + "Anita", + "Antonia", + "Araceli", + "Ariadna", + "Barbara", + "Beatriz", + "Berta", + "Blanca", + "Caridad", + "Carla", + "Carlota", + "Carmen", + "Carolina", + "Catalina", + "Cecilia", + "Clara", + "Claudia", + "Concepción", + "Conchita", + "Cristina", + "Daniela", + "Débora", + "Diana", + "Dolores", + "Dorotea", + "Elena", + "Elisa", + "Elizabeth", + "Eloisa", + "Elsa", + "Elvira", + "Emilia", + "Esperanza", + "Estela", + "Ester", + "Eva", + "Florencia", + "Francisca", + "Gabriela", + "Gloria", + "Graciela", + "Guadalupe", + "Guillermina", + "Inés", + "Irene", + "Isabel", + "Isabela", + "Josefina", + "Juana", + "Julia", + "Laura", + "Leonor", + "Leticia", + "Lilia", + "Lola", + "Lorena", + "Lourdes", + "Lucia", + "Luisa", + "Luz", + "Magdalena", + "Manuela", + "Marcela", + "Margarita", + "María", + "María Cristina", + "María de Jesús", + "María de los Ángeles", + "María del Carmen", + "María Elena", + "María Eugenia", + "María Guadalupe", + "María José", + "María Luisa", + "María Soledad", + "María Teresa", + "Mariana", + "Maricarmen", + "Marilu", + "Marisol", + "Marta", + "Mayte", + "Mercedes", + "Micaela", + "Mónica", + "Natalia", + "Norma", + "Olivia", + "Patricia", + "Pilar", + "Ramona", + "Raquel", + "Rebeca", + "Reina", + "Rocio", + "Rosa", + "Rosa María", + "Rosalia", + "Rosario", + "Sara", + "Silvia", + "Sofia", + "Soledad", + "Sonia", + "Susana", + "Teresa", + "Verónica", + "Victoria", + "Virginia", + "Xochitl", + "Yolanda", + "Abigail", + "Abril", + "Adela", + "Alexa", + "Alondra Romina", + "Ana Sofía", + "Ana Victoria", + "Camila", + "Carolina", + "Daniela", + "Dulce María", + "Emily", + "Esmeralda", + "Estefanía", + "Evelyn", + "Fatima", + "Ivanna", + "Jazmin", + "Jennifer", + "Jimena", + "Julieta", + "Kimberly", + "Liliana", + "Lizbeth", + "María Fernanda", + "Melany", + "Melissa", + "Miranda", + "Monserrat", + "Naomi", + "Natalia", + "Nicole", + "Paola", + "Paulina", + "Regina", + "Renata", + "Valentina", + "Valeria", + "Vanessa", + "Ximena", + "Ximena Guadalupe", + "Yamileth", + "Yaretzi", + "Zoe" + ] +},{}],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", + "Acosta", + "Acuña", + "Adame", + "Adorno", + "Agosto", + "Aguayo", + "Águilar", + "Aguilera", + "Aguirre", + "Alanis", + "Alaniz", + "Alarcón", + "Alba", + "Alcala", + "Alcántar", + "Alcaraz", + "Alejandro", + "Alemán", + "Alfaro", + "Alicea", + "Almanza", + "Almaraz", + "Almonte", + "Alonso", + "Alonzo", + "Altamirano", + "Alva", + "Alvarado", + "Alvarez", + "Amador", + "Amaya", + "Anaya", + "Anguiano", + "Angulo", + "Aparicio", + "Apodaca", + "Aponte", + "Aragón", + "Aranda", + "Araña", + "Arce", + "Archuleta", + "Arellano", + "Arenas", + "Arevalo", + "Arguello", + "Arias", + "Armas", + "Armendáriz", + "Armenta", + "Armijo", + "Arredondo", + "Arreola", + "Arriaga", + "Arroyo", + "Arteaga", + "Atencio", + "Ávalos", + "Ávila", + "Avilés", + "Ayala", + "Baca", + "Badillo", + "Báez", + "Baeza", + "Bahena", + "Balderas", + "Ballesteros", + "Banda", + "Bañuelos", + "Barajas", + "Barela", + "Barragán", + "Barraza", + "Barrera", + "Barreto", + "Barrientos", + "Barrios", + "Batista", + "Becerra", + "Beltrán", + "Benavides", + "Benavídez", + "Benítez", + "Bermúdez", + "Bernal", + "Berríos", + "Bétancourt", + "Blanco", + "Bonilla", + "Borrego", + "Botello", + "Bravo", + "Briones", + "Briseño", + "Brito", + "Bueno", + "Burgos", + "Bustamante", + "Bustos", + "Caballero", + "Cabán", + "Cabrera", + "Cadena", + "Caldera", + "Calderón", + "Calvillo", + "Camacho", + "Camarillo", + "Campos", + "Canales", + "Candelaria", + "Cano", + "Cantú", + "Caraballo", + "Carbajal", + "Cardenas", + "Cardona", + "Carmona", + "Carranza", + "Carrasco", + "Carrasquillo", + "Carreón", + "Carrera", + "Carrero", + "Carrillo", + "Carrion", + "Carvajal", + "Casanova", + "Casares", + "Casárez", + "Casas", + "Casillas", + "Castañeda", + "Castellanos", + "Castillo", + "Castro", + "Cavazos", + "Cazares", + "Ceballos", + "Cedillo", + "Ceja", + "Centeno", + "Cepeda", + "Cerda", + "Cervantes", + "Cervántez", + "Chacón", + "Chapa", + "Chavarría", + "Chávez", + "Cintrón", + "Cisneros", + "Collado", + "Collazo", + "Colón", + "Colunga", + "Concepción", + "Contreras", + "Cordero", + "Córdova", + "Cornejo", + "Corona", + "Coronado", + "Corral", + "Corrales", + "Correa", + "Cortés", + "Cortez", + "Cotto", + "Covarrubias", + "Crespo", + "Cruz", + "Cuellar", + "Curiel", + "Dávila", + "de Anda", + "de Jesús", + "Delacrúz", + "Delafuente", + "Delagarza", + "Delao", + "Delapaz", + "Delarosa", + "Delatorre", + "Deleón", + "Delgadillo", + "Delgado", + "Delrío", + "Delvalle", + "Díaz", + "Domínguez", + "Domínquez", + "Duarte", + "Dueñas", + "Duran", + "Echevarría", + "Elizondo", + "Enríquez", + "Escalante", + "Escamilla", + "Escobar", + "Escobedo", + "Esparza", + "Espinal", + "Espino", + "Espinosa", + "Espinoza", + "Esquibel", + "Esquivel", + "Estévez", + "Estrada", + "Fajardo", + "Farías", + "Feliciano", + "Fernández", + "Ferrer", + "Fierro", + "Figueroa", + "Flores", + "Flórez", + "Fonseca", + "Franco", + "Frías", + "Fuentes", + "Gaitán", + "Galarza", + "Galindo", + "Gallardo", + "Gallegos", + "Galván", + "Gálvez", + "Gamboa", + "Gamez", + "Gaona", + "Garay", + "García", + "Garibay", + "Garica", + "Garrido", + "Garza", + "Gastélum", + "Gaytán", + "Gil", + "Girón", + "Godínez", + "Godoy", + "Gollum", + "Gómez", + "Gonzales", + "González", + "Gracia", + "Granado", + "Granados", + "Griego", + "Grijalva", + "Guajardo", + "Guardado", + "Guerra", + "Guerrero", + "Guevara", + "Guillen", + "Gurule", + "Gutiérrez", + "Guzmán", + "Haro", + "Henríquez", + "Heredia", + "Hernádez", + "Hernandes", + "Hernández", + "Herrera", + "Hidalgo", + "Hinojosa", + "Holguín", + "Huerta", + "Huixtlacatl", + "Hurtado", + "Ibarra", + "Iglesias", + "Irizarry", + "Jaime", + "Jaimes", + "Jáquez", + "Jaramillo", + "Jasso", + "Jiménez", + "Jimínez", + "Juárez", + "Jurado", + "Kadar rodriguez", + "Kamal", + "Kamat", + "Kanaria", + "Kanea", + "Kanimal", + "Kano", + "Kanzaki", + "Kaplan", + "Kara", + "Karam", + "Karan", + "Kardache soto", + "Karem", + "Karen", + "Khalid", + "Kindelan", + "Koenig", + "Korta", + "Korta hernandez", + "Kortajarena", + "Kranz sans", + "Krasnova", + "Krauel natera", + "Kuzmina", + "Kyra", + "Laboy", + "Lara", + "Laureano", + "Leal", + "Lebrón", + "Ledesma", + "Leiva", + "Lemus", + "León", + "Lerma", + "Leyva", + "Limón", + "Linares", + "Lira", + "Llamas", + "Loera", + "Lomeli", + "Longoria", + "López", + "Lovato", + "Loya", + "Lozada", + "Lozano", + "Lucero", + "Lucio", + "Luevano", + "Lugo", + "Luna", + "Macías", + "Madera", + "Madrid", + "Madrigal", + "Maestas", + "Magaña", + "Malave", + "Maldonado", + "Manzanares", + "Mares", + "Marín", + "Márquez", + "Marrero", + "Marroquín", + "Martínez", + "Mascareñas", + "Mata", + "Mateo", + "Matías", + "Matos", + "Maya", + "Mayorga", + "Medina", + "Medrano", + "Mejía", + "Meléndez", + "Melgar", + "Mena", + "Menchaca", + "Méndez", + "Mendoza", + "Menéndez", + "Meraz", + "Mercado", + "Merino", + "Mesa", + "Meza", + "Miramontes", + "Miranda", + "Mireles", + "Mojica", + "Molina", + "Mondragón", + "Monroy", + "Montalvo", + "Montañez", + "Montaño", + "Montemayor", + "Montenegro", + "Montero", + "Montes", + "Montez", + "Montoya", + "Mora", + "Morales", + "Moreno", + "Mota", + "Moya", + "Munguía", + "Muñiz", + "Muñoz", + "Murillo", + "Muro", + "Nájera", + "Naranjo", + "Narváez", + "Nava", + "Navarrete", + "Navarro", + "Nazario", + "Negrete", + "Negrón", + "Nevárez", + "Nieto", + "Nieves", + "Niño", + "Noriega", + "Núñez", + "Ñañez", + "Ocampo", + "Ocasio", + "Ochoa", + "Ojeda", + "Olivares", + "Olivárez", + "Olivas", + "Olivera", + "Olivo", + "Olmos", + "Olvera", + "Ontiveros", + "Oquendo", + "Ordóñez", + "Orellana", + "Ornelas", + "Orosco", + "Orozco", + "Orta", + "Ortega", + "Ortiz", + "Osorio", + "Otero", + "Ozuna", + "Pabón", + "Pacheco", + "Padilla", + "Padrón", + "Páez", + "Pagan", + "Palacios", + "Palomino", + "Palomo", + "Pantoja", + "Paredes", + "Parra", + "Partida", + "Patiño", + "Paz", + "Pedraza", + "Pedroza", + "Pelayo", + "Peña", + "Perales", + "Peralta", + "Perea", + "Peres", + "Pérez", + "Pichardo", + "Pineda", + "Piña", + "Pizarro", + "Polanco", + "Ponce", + "Porras", + "Portillo", + "Posada", + "Prado", + "Preciado", + "Prieto", + "Puente", + "Puga", + "Pulido", + "Quesada", + "Quevedo", + "Quezada", + "Quinta", + "Quintairos", + "Quintana", + "Quintanilla", + "Quintero", + "Quintero cruz", + "Quintero de la cruz", + "Quiñones", + "Quiñónez", + "Quiros", + "Quiroz", + "Rael", + "Ramírez", + "Ramón", + "Ramos", + "Rangel", + "Rascón", + "Raya", + "Razo", + "Regalado", + "Rendón", + "Rentería", + "Reséndez", + "Reyes", + "Reyna", + "Reynoso", + "Rico", + "Rincón", + "Riojas", + "Ríos", + "Rivas", + "Rivera", + "Rivero", + "Robledo", + "Robles", + "Rocha", + "Rodarte", + "Rodrígez", + "Rodríguez", + "Rodríquez", + "Rojas", + "Rojo", + "Roldán", + "Rolón", + "Romero", + "Romo", + "Roque", + "Rosado", + "Rosales", + "Rosario", + "Rosas", + "Roybal", + "Rubio", + "Ruelas", + "Ruiz", + "Saavedra", + "Sáenz", + "Saiz", + "Salas", + "Salazar", + "Salcedo", + "Salcido", + "Saldaña", + "Saldivar", + "Salgado", + "Salinas", + "Samaniego", + "Sanabria", + "Sanches", + "Sánchez", + "Sandoval", + "Santacruz", + "Santana", + "Santiago", + "Santillán", + "Sarabia", + "Sauceda", + "Saucedo", + "Sedillo", + "Segovia", + "Segura", + "Sepúlveda", + "Serna", + "Serrano", + "Serrato", + "Sevilla", + "Sierra", + "Sisneros", + "Solano", + "Solís", + "Soliz", + "Solorio", + "Solorzano", + "Soria", + "Sosa", + "Sotelo", + "Soto", + "Suárez", + "Tafoya", + "Tamayo", + "Tamez", + "Tapia", + "Tejada", + "Tejeda", + "Téllez", + "Tello", + "Terán", + "Terrazas", + "Tijerina", + "Tirado", + "Toledo", + "Toro", + "Torres", + "Tórrez", + "Tovar", + "Trejo", + "Treviño", + "Trujillo", + "Ulibarri", + "Ulloa", + "Urbina", + "Ureña", + "Urías", + "Uribe", + "Urrutia", + "Vaca", + "Valadez", + "Valdés", + "Valdez", + "Valdivia", + "Valencia", + "Valentín", + "Valenzuela", + "Valladares", + "Valle", + "Vallejo", + "Valles", + "Valverde", + "Vanegas", + "Varela", + "Vargas", + "Vásquez", + "Vázquez", + "Vega", + "Vela", + "Velasco", + "Velásquez", + "Velázquez", + "Vélez", + "Véliz", + "Venegas", + "Vera", + "Verdugo", + "Verduzco", + "Vergara", + "Viera", + "Vigil", + "Villa", + "Villagómez", + "Villalobos", + "Villalpando", + "Villanueva", + "Villareal", + "Villarreal", + "Villaseñor", + "Villegas", + "Xacon", + "Xairo Belmonte", + "Xana", + "Xenia", + "Xiana", + "Xicoy", + "Yago", + "Yami", + "Yanes", + "Yáñez", + "Ybarra", + "Yebra", + "Yunta", + "Zabaleta", + "Zamarreno", + "Zamarripa", + "Zambrana", + "Zambrano", + "Zamora", + "Zamudio", + "Zapata", + "Zaragoza", + "Zarate", + "Zavala", + "Zayas", + "Zelaya", + "Zepeda", + "Zúñiga" + ]; + +},{}],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}" + ]; + +},{}],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", + "III", + "IV", + "V", + "MD", + "DDS", + "PhD", + "DVM", + "Ing.", + "Lic.", + "Dr.", + "Mtro." + ]; + +},{}],365:[function(require,module,exports){ + module["exports"] = { + "descriptor": [ + "Jefe", + "Senior", + "Directo", + "Corporativo", + "Dinánmico", + "Futuro", + "Producto", + "Nacional", + "Regional", + "Distrito", + "Central", + "Global", + "Cliente", + "Inversor", + "International", + "Heredado", + "Adelante", + "Interno", + "Humano", + "Gerente", + "SubGerente", + "Director" + ], + "level": [ + "Soluciones", + "Programa", + "Marca", + "Seguridad", + "Investigación", + "Marketing", + "Normas", + "Implementación", + "Integración", + "Funcionalidad", + "Respuesta", + "Paradigma", + "Tácticas", + "Identidad", + "Mercados", + "Grupo", + "División", + "Aplicaciones", + "Optimización", + "Operaciones", + "Infraestructura", + "Intranet", + "Comunicaciones", + "Web", + "Calidad", + "Seguro", + "Mobilidad", + "Cuentas", + "Datos", + "Creativo", + "Configuración", + "Contabilidad", + "Interacciones", + "Factores", + "Usabilidad", + "Métricas", + ], + "job": [ + "Supervisor", + "Asociado", + "Ejecutivo", + "Relacciones", + "Oficial", + "Gerente", + "Ingeniero", + "Especialista", + "Director", + "Coordinador", + "Administrador", + "Arquitecto", + "Analista", + "Diseñador", + "Planificador", + "Técnico", + "Funcionario", + "Desarrollador", + "Productor", + "Consultor", + "Asistente", + "Facilitador", + "Agente", + "Representante", + "Estratega", + "Scrum Master", + "Scrum Owner", + "Product Owner", + "Scrum Developer" + ] + }; + +},{}],366:[function(require,module,exports){ + module["exports"] = [ + "5###-###-###", + "5##.###.###", + "5## ### ###", + "5########" + ]; + +},{}],367:[function(require,module,exports){ + arguments[4][47][0].apply(exports,arguments) +},{"./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" + ]; + +},{}],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":373}],372:[function(require,module,exports){ + 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":372,"./last_name":374,"./prefix":375}],374:[function(require,module,exports){ + module["exports"] = [ + "عارف", + "عاشوری", + "عالی", + "عبادی", + "عبدالکریمی", + "عبدالملکی", + "عراقی", + "عزیزی", + "عصار", + "عقیلی", + "علم", + "علم‌الهدی", + "علی عسگری", + "علی‌آبادی", + "علیا", + "علی‌پور", + "علی‌زمانی", + "عنایت", + "غضنفری", + "غنی", + "فارسی", + "فاطمی", + "فانی", + "فتاحی", + "فرامرزی", + "فرج", + "فرشیدورد", + "فرمانفرمائیان", + "فروتن", + "فرهنگ", + "فریاد", + "فنایی", + "فنی‌زاده", + "فولادوند", + "فهمیده", + "قاضی", + "قانعی", + "قانونی", + "قمیشی", + "قنبری", + "قهرمان", + "قهرمانی", + "قهرمانیان", + "قهستانی", + "کاشی", + "کاکاوند", + "کامکار", + "کاملی", + "کاویانی", + "کدیور", + "کردبچه", + "کرمانی", + "کریمی", + "کلباسی", + "کمالی", + "کوشکی", + "کهنمویی", + "کیان", + "کیانی (نام خانوادگی)", + "کیمیایی", + "گل محمدی", + "گلپایگانی", + "گنجی", + "لاجوردی", + "لاچینی", + "لاهوتی", + "لنکرانی", + "لوکس", + "مجاهد", + "مجتبایی", + "مجتبوی", + "مجتهد شبستری", + "مجتهدی", + "مجرد", + "محجوب", + "محجوبی", + "محدثی", + "محمدرضایی", + "محمدی", + "مددی", + "مرادخانی", + "مرتضوی", + "مستوفی", + "مشا", + "مصاحب", + "مصباح", + "مصباح‌زاده", + "مطهری", + "مظفر", + "معارف", + "معروف", + "معین", + "مفتاح", + "مفتح", + "مقدم", + "ملایری", + "ملک", + "ملکیان", + "منوچهری", + "موحد", + "موسوی", + "موسویان", + "مهاجرانی", + "مهدی‌پور", + "میرباقری", + "میردامادی", + "میرزاده", + "میرسپاسی", + "میزبانی", + "ناظری", + "نامور", + "نجفی", + "ندوشن", + "نراقی", + "نعمت‌زاده", + "نقدی", + "نقیب‌زاده", + "نواب", + "نوبخت", + "نوبختی", + "نهاوندی", + "نیشابوری", + "نیلوفری", + "واثقی", + "واعظ", + "واعظ‌زاده", + "واعظی", + "وکیلی", + "هاشمی", + "هاشمی رفسنجانی", + "هاشمیان", + "هامون", + "هدایت", + "هراتی", + "هروی", + "همایون", + "همت", + "همدانی", + "هوشیار", + "هومن", + "یاحقی", + "یادگار", + "یثربی", + "یلدا" + ]; + +},{}],375:[function(require,module,exports){ + module["exports"] = [ + "آقای", + "خانم", + "دکتر" + ]; + +},{}],376:[function(require,module,exports){ + module["exports"] = [ + "####", + "###", + "##", + "#" + ]; + +},{}],377:[function(require,module,exports){ + module.exports=require(49) +},{"/Users/a/dev/faker.js/lib/locales/de_AT/address/city.js":49}],378:[function(require,module,exports){ + module["exports"] = [ + "Paris", + "Marseille", + "Lyon", + "Toulouse", + "Nice", + "Nantes", + "Strasbourg", + "Montpellier", + "Bordeaux", + "Lille13", + "Rennes", + "Reims", + "Le Havre", + "Saint-Étienne", + "Toulon", + "Grenoble", + "Dijon", + "Angers", + "Saint-Denis", + "Villeurbanne", + "Le Mans", + "Aix-en-Provence", + "Brest", + "Nîmes", + "Limoges", + "Clermont-Ferrand", + "Tours", + "Amiens", + "Metz", + "Perpignan", + "Besançon", + "Orléans", + "Boulogne-Billancourt", + "Mulhouse", + "Rouen", + "Caen", + "Nancy", + "Saint-Denis", + "Saint-Paul", + "Montreuil", + "Argenteuil", + "Roubaix", + "Dunkerque14", + "Tourcoing", + "Nanterre", + "Avignon", + "Créteil", + "Poitiers", + "Fort-de-France", + "Courbevoie", + "Versailles", + "Vitry-sur-Seine", + "Colombes", + "Pau", + "Aulnay-sous-Bois", + "Asnières-sur-Seine", + "Rueil-Malmaison", + "Saint-Pierre", + "Antibes", + "Saint-Maur-des-Fossés", + "Champigny-sur-Marne", + "La Rochelle", + "Aubervilliers", + "Calais", + "Cannes", + "Le Tampon", + "Béziers", + "Colmar", + "Bourges", + "Drancy", + "Mérignac", + "Saint-Nazaire", + "Valence", + "Ajaccio", + "Issy-les-Moulineaux", + "Villeneuve-d'Ascq", + "Levallois-Perret", + "Noisy-le-Grand", + "Quimper", + "La Seyne-sur-Mer", + "Antony", + "Troyes", + "Neuilly-sur-Seine", + "Sarcelles", + "Les Abymes", + "Vénissieux", + "Clichy", + "Lorient", + "Pessac", + "Ivry-sur-Seine", + "Cergy", + "Cayenne", + "Niort", + "Chambéry", + "Montauban", + "Saint-Quentin", + "Villejuif", + "Hyères", + "Beauvais", + "Cholet" + ]; + +},{}],379:[function(require,module,exports){ + module["exports"] = [ + "France" + ]; + +},{}],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"); + address.postcode = require("./postcode"); + address.state = require("./state"); + address.city_name = require("./city_name"); + address.city = require("./city"); + 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":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" + ]; + +},{}],383:[function(require,module,exports){ + module["exports"] = [ + "Alsace", + "Aquitaine", + "Auvergne", + "Basse-Normandie", + "Bourgogne", + "Bretagne", + "Centre", + "Champagne-Ardenne", + "Corse", + "Franche-Comté", + "Haute-Normandie", + "Île-de-France", + "Languedoc-Roussillon", + "Limousin", + "Lorraine", + "Midi-Pyrénées", + "Nord-Pas-de-Calais", + "Pays de la Loire", + "Picardie", + "Poitou-Charentes", + "Provence-Alpes-Côte d'Azur", + "Rhône-Alpes" + ]; + +},{}],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}" + ]; + +},{}],386:[function(require,module,exports){ + module["exports"] = [ + "Allée, Voie", + "Rue", + "Avenue", + "Boulevard", + "Quai", + "Passage", + "Impasse", + "Place" + ]; + +},{}],387:[function(require,module,exports){ + module["exports"] = [ + "de l'Abbaye", + "Adolphe Mille", + "d'Alésia", + "d'Argenteuil", + "d'Assas", + "du Bac", + "de Paris", + "La Boétie", + "Bonaparte", + "de la Bûcherie", + "de Caumartin", + "Charlemagne", + "du Chat-qui-Pêche", + "de la Chaussée-d'Antin", + "du Dahomey", + "Dauphine", + "Delesseux", + "du Faubourg Saint-Honoré", + "du Faubourg-Saint-Denis", + "de la Ferronnerie", + "des Francs-Bourgeois", + "des Grands Augustins", + "de la Harpe", + "du Havre", + "de la Huchette", + "Joubert", + "Laffitte", + "Lepic", + "des Lombards", + "Marcadet", + "Molière", + "Monsieur-le-Prince", + "de Montmorency", + "Montorgueil", + "Mouffetard", + "de Nesle", + "Oberkampf", + "de l'Odéon", + "d'Orsel", + "de la Paix", + "des Panoramas", + "Pastourelle", + "Pierre Charron", + "de la Pompe", + "de Presbourg", + "de Provence", + "de Richelieu", + "de Rivoli", + "des Rosiers", + "Royale", + "d'Abbeville", + "Saint-Honoré", + "Saint-Bernard", + "Saint-Denis", + "Saint-Dominique", + "Saint-Jacques", + "Saint-Séverin", + "des Saussaies", + "de Seine", + "de Solférino", + "Du Sommerard", + "de Tilsitt", + "Vaneau", + "de Vaugirard", + "de la Victoire", + "Zadkine" + ]; + +},{}],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}" + ]; + +},{}],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", + "SEM", + "SCOP", + "GIE", + "EI" + ]; + +},{}],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":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" + ]; + +},{}],399:[function(require,module,exports){ + module["exports"] = [ + "gmail.com", + "yahoo.fr", + "hotmail.fr" + ]; + +},{}],400:[function(require,module,exports){ + arguments[4][37][0].apply(exports,arguments) +},{"./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}],404:[function(require,module,exports){ + module["exports"] = [ + "Enzo", + "Lucas", + "Mathis", + "Nathan", + "Thomas", + "Hugo", + "Théo", + "Tom", + "Louis", + "Raphaël", + "Clément", + "Léo", + "Mathéo", + "Maxime", + "Alexandre", + "Antoine", + "Yanis", + "Paul", + "Baptiste", + "Alexis", + "Gabriel", + "Arthur", + "Jules", + "Ethan", + "Noah", + "Quentin", + "Axel", + "Evan", + "Mattéo", + "Romain", + "Valentin", + "Maxence", + "Noa", + "Adam", + "Nicolas", + "Julien", + "Mael", + "Pierre", + "Rayan", + "Victor", + "Mohamed", + "Adrien", + "Kylian", + "Sacha", + "Benjamin", + "Léa", + "Clara", + "Manon", + "Chloé", + "Camille", + "Ines", + "Sarah", + "Jade", + "Lola", + "Anaïs", + "Lucie", + "Océane", + "Lilou", + "Marie", + "Eva", + "Romane", + "Lisa", + "Zoe", + "Julie", + "Mathilde", + "Louise", + "Juliette", + "Clémence", + "Célia", + "Laura", + "Lena", + "Maëlys", + "Charlotte", + "Ambre", + "Maeva", + "Pauline", + "Lina", + "Jeanne", + "Lou", + "Noémie", + "Justine", + "Louna", + "Elisa", + "Alice", + "Emilie", + "Carla", + "Maëlle", + "Alicia", + "Mélissa" + ]; + +},{}],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":404,"./last_name":406,"./name":407,"./prefix":408,"./title":409}],406:[function(require,module,exports){ + module["exports"] = [ + "Martin", + "Bernard", + "Dubois", + "Thomas", + "Robert", + "Richard", + "Petit", + "Durand", + "Leroy", + "Moreau", + "Simon", + "Laurent", + "Lefebvre", + "Michel", + "Garcia", + "David", + "Bertrand", + "Roux", + "Vincent", + "Fournier", + "Morel", + "Girard", + "Andre", + "Lefevre", + "Mercier", + "Dupont", + "Lambert", + "Bonnet", + "Francois", + "Martinez", + "Legrand", + "Garnier", + "Faure", + "Rousseau", + "Blanc", + "Guerin", + "Muller", + "Henry", + "Roussel", + "Nicolas", + "Perrin", + "Morin", + "Mathieu", + "Clement", + "Gauthier", + "Dumont", + "Lopez", + "Fontaine", + "Chevalier", + "Robin", + "Masson", + "Sanchez", + "Gerard", + "Nguyen", + "Boyer", + "Denis", + "Lemaire", + "Duval", + "Joly", + "Gautier", + "Roger", + "Roche", + "Roy", + "Noel", + "Meyer", + "Lucas", + "Meunier", + "Jean", + "Perez", + "Marchand", + "Dufour", + "Blanchard", + "Marie", + "Barbier", + "Brun", + "Dumas", + "Brunet", + "Schmitt", + "Leroux", + "Colin", + "Fernandez", + "Pierre", + "Renard", + "Arnaud", + "Rolland", + "Caron", + "Aubert", + "Giraud", + "Leclerc", + "Vidal", + "Bourgeois", + "Renaud", + "Lemoine", + "Picard", + "Gaillard", + "Philippe", + "Leclercq", + "Lacroix", + "Fabre", + "Dupuis", + "Olivier", + "Rodriguez", + "Da silva", + "Hubert", + "Louis", + "Charles", + "Guillot", + "Riviere", + "Le gall", + "Guillaume", + "Adam", + "Rey", + "Moulin", + "Gonzalez", + "Berger", + "Lecomte", + "Menard", + "Fleury", + "Deschamps", + "Carpentier", + "Julien", + "Benoit", + "Paris", + "Maillard", + "Marchal", + "Aubry", + "Vasseur", + "Le roux", + "Renault", + "Jacquet", + "Collet", + "Prevost", + "Poirier", + "Charpentier", + "Royer", + "Huet", + "Baron", + "Dupuy", + "Pons", + "Paul", + "Laine", + "Carre", + "Breton", + "Remy", + "Schneider", + "Perrot", + "Guyot", + "Barre", + "Marty", + "Cousin" + ]; + +},{}],407:[function(require,module,exports){ + module["exports"] = [ + "#{prefix} #{first_name} #{last_name}", + "#{first_name} #{last_name}", + "#{last_name} #{first_name}" + ]; + +},{}],408:[function(require,module,exports){ + module["exports"] = [ + "M", + "Mme", + "Mlle", + "Dr", + "Prof" + ]; + +},{}],409:[function(require,module,exports){ + module["exports"] = { + "job": [ + "Superviseur", + "Executif", + "Manager", + "Ingenieur", + "Specialiste", + "Directeur", + "Coordinateur", + "Administrateur", + "Architecte", + "Analyste", + "Designer", + "Technicien", + "Developpeur", + "Producteur", + "Consultant", + "Assistant", + "Agent", + "Stagiaire" + ] + }; + +},{}],410:[function(require,module,exports){ + module["exports"] = [ + "01########", + "02########", + "03########", + "04########", + "05########", + "06########", + "07########", + "+33 1########", + "+33 2########", + "+33 3########", + "+33 4########", + "+33 5########", + "+33 6########", + "+33 7########" + ]; + +},{}],411:[function(require,module,exports){ + arguments[4][47][0].apply(exports,arguments) +},{"./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", + "Terre-Neuve-et-Labrador", + "Nouvelle-Écosse", + "Territoires du Nord-Ouest", + "Nunavut", + "Ontario", + "Île-du-Prince-Édouard", + "Québec", + "Saskatchewan", + "Yukon" + ]; + +},{}],416:[function(require,module,exports){ + module["exports"] = [ + "AB", + "BC", + "MB", + "NB", + "NL", + "NS", + "NU", + "NT", + "ON", + "PE", + "QC", + "SK", + "YK" + ]; + +},{}],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":413,"./internet":420,"./phone_number":422}],418:[function(require,module,exports){ + module["exports"] = [ + "qc.ca", + "ca", + "com", + "biz", + "info", + "name", + "net", + "org" + ]; + +},{}],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":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 ###" + ]; + +},{}],422:[function(require,module,exports){ + arguments[4][47][0].apply(exports,arguments) +},{"./formats":421,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],423:[function(require,module,exports){ + 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}" + ]; + +},{}],425:[function(require,module,exports){ + module["exports"] = [ + "აბასთუმანი", + "აბაშა", + "ადიგენი", + "ამბროლაური", + "ანაკლია", + "ასპინძა", + "ახალგორი", + "ახალქალაქი", + "ახალციხე", + "ახმეტა", + "ბათუმი", + "ბაკურიანი", + "ბაღდათი", + "ბახმარო", + "ბოლნისი", + "ბორჯომი", + "გარდაბანი", + "გონიო", + "გორი", + "გრიგოლეთი", + "გუდაური", + "გურჯაანი", + "დედოფლისწყარო", + "დმანისი", + "დუშეთი", + "ვანი", + "ზესტაფონი", + "ზუგდიდი", + "თბილისი", + "თეთრიწყარო", + "თელავი", + "თერჯოლა", + "თიანეთი", + "კასპი", + "კვარიათი", + "კიკეთი", + "კოჯორი", + "ლაგოდეხი", + "ლანჩხუთი", + "ლენტეხი", + "მარნეული", + "მარტვილი", + "მესტია", + "მცხეთა", + "მწვანე კონცხი", + "ნინოწმინდა", + "ოზურგეთი", + "ონი", + "რუსთავი", + "საგარეჯო", + "საგურამო", + "საირმე", + "სამტრედია", + "სარფი", + "საჩხერე", + "სენაკი", + "სიღნაღი", + "სტეფანწმინდა", + "სურამი", + "ტაბახმელა", + "ტყიბული", + "ურეკი", + "ფოთი", + "ქარელი", + "ქედა", + "ქობულეთი", + "ქუთაისი", + "ყვარელი", + "შუახევი", + "ჩაქვი", + "ჩოხატაური", + "ცაგერი", + "ცხოროჭყუ", + "წავკისი", + "წალენჯიხა", + "წალკა", + "წაღვერი", + "წეროვანი", + "წნორი", + "წყალტუბო", + "წყნეთი", + "ჭიათურა", + "ხარაგაული", + "ხაშური", + "ხელვაჩაური", + "ხობი", + "ხონი", + "ხულო" + ]; + +},{}],426:[function(require,module,exports){ + module["exports"] = [ + "ახალი", + "ძველი", + "ზემო", + "ქვემო" + ]; + +},{}],427:[function(require,module,exports){ + module["exports"] = [ + "სოფელი", + "ძირი", + "სკარი", + "დაბა" + ]; + +},{}],428:[function(require,module,exports){ + module["exports"] = [ + "ავსტრალია", + "ავსტრია", + "ავღანეთი", + "აზავადი", + "აზერბაიჯანი", + "აზიაში", + "აზიის", + "ალბანეთი", + "ალჟირი", + "ამაღლება და ტრისტანი-და-კუნია", + "ამერიკის ვირჯინიის კუნძულები", + "ამერიკის სამოა", + "ამერიკის შეერთებული შტატები", + "ამერიკის", + "ანგილია", + "ანგოლა", + "ანდორა", + "ანტიგუა და ბარბუდა", + "არაბეთის საემიროები", + "არაბთა გაერთიანებული საამიროები", + "არაბული ქვეყნების ლიგის", + "არგენტინა", + "არუბა", + "არცნობილი ქვეყნების სია", + "აფრიკაში", + "აფრიკაშია", + "აღდგომის კუნძული", + "აღმ. ტიმორი", + "აღმოსავლეთი აფრიკა", + "აღმოსავლეთი ტიმორი", + "აშშ", + "აშშ-ის ვირჯინის კუნძულები", + "ახალი ზელანდია", + "ახალი კალედონია", + "ბანგლადეში", + "ბარბადოსი", + "ბაჰამის კუნძულები", + "ბაჰრეინი", + "ბელარუსი", + "ბელგია", + "ბელიზი", + "ბენინი", + "ბერმუდა", + "ბერმუდის კუნძულები", + "ბოლივია", + "ბოსნია და ჰერცეგოვინა", + "ბოტსვანა", + "ბრაზილია", + "ბრიტანეთის ვირჯინიის კუნძულები", + "ბრიტანეთის ვირჯინის კუნძულები", + "ბრიტანეთის ინდოეთის ოკეანის ტერიტორია", + "ბრუნეი", + "ბულგარეთი", + "ბურკინა ფასო", + "ბურკინა-ფასო", + "ბურუნდი", + "ბჰუტანი", + "გაბონი", + "გაერთიანებული სამეფო", + "გაეროს", + "გაიანა", + "გამბია", + "განა", + "გერმანია", + "გვადელუპა", + "გვატემალა", + "გვინეა", + "გვინეა-ბისაუ", + "გიბრალტარი", + "გრენადა", + "გრენლანდია", + "გუამი", + "დამოკიდებული ტერ.", + "დამოკიდებული ტერიტორია", + "დამოკიდებული", + "დანია", + "დასავლეთი აფრიკა", + "დასავლეთი საჰარა", + "დიდი ბრიტანეთი", + "დომინიკა", + "დომინიკელთა რესპუბლიკა", + "ეგვიპტე", + "ევროკავშირის", + "ევროპასთან", + "ევროპაშია", + "ევროპის ქვეყნები", + "ეთიოპია", + "ეკვადორი", + "ეკვატორული გვინეა", + "ეპარსეს კუნძული", + "ერაყი", + "ერიტრეა", + "ესპანეთი", + "ესპანეთის სუვერენული ტერიტორიები", + "ესტონეთი", + "ეშმორის და კარტიეს კუნძულები", + "ვანუატუ", + "ვატიკანი", + "ვენესუელა", + "ვიეტნამი", + "ზამბია", + "ზიმბაბვე", + "თურქეთი", + "თურქმენეთი", + "იამაიკა", + "იან მაიენი", + "იაპონია", + "იემენი", + "ინდოეთი", + "ინდონეზია", + "იორდანია", + "ირანი", + "ირლანდია", + "ისლანდია", + "ისრაელი", + "იტალია", + "კაბო-ვერდე", + "კაიმანის კუნძულები", + "კამბოჯა", + "კამერუნი", + "კანადა", + "კანარის კუნძულები", + "კარიბის ზღვის", + "კატარი", + "კენია", + "კვიპროსი", + "კინგმენის რიფი", + "კირიბატი", + "კლიპერტონი", + "კოლუმბია", + "კომორი", + "კომორის კუნძულები", + "კონგოს დემოკრატიული რესპუბლიკა", + "კონგოს რესპუბლიკა", + "კორეის რესპუბლიკა", + "კოსტა-რიკა", + "კოტ-დ’ივუარი", + "კუბა", + "კუკის კუნძულები", + "ლაოსი", + "ლატვია", + "ლესოთო", + "ლიბანი", + "ლიბერია", + "ლიბია", + "ლიტვა", + "ლიხტენშტაინი", + "ლუქსემბურგი", + "მადაგასკარი", + "მადეირა", + "მავრიკი", + "მავრიტანია", + "მაიოტა", + "მაკაო", + "მაკედონია", + "მალავი", + "მალაიზია", + "მალდივი", + "მალდივის კუნძულები", + "მალი", + "მალტა", + "მაროკო", + "მარტინიკა", + "მარშალის კუნძულები", + "მარჯნის ზღვის კუნძულები", + "მელილია", + "მექსიკა", + "მიანმარი", + "მიკრონეზია", + "მიკრონეზიის ფედერაციული შტატები", + "მიმდებარე კუნძულები", + "მოზამბიკი", + "მოლდოვა", + "მონაკო", + "მონსერატი", + "მონღოლეთი", + "ნამიბია", + "ნაურუ", + "ნაწილობრივ აფრიკაში", + "ნეპალი", + "ნიგერი", + "ნიგერია", + "ნიდერლანდი", + "ნიდერლანდის ანტილები", + "ნიკარაგუა", + "ნიუე", + "ნორვეგია", + "ნორფოლკის კუნძული", + "ოკეანეთის", + "ოკეანიას", + "ომანი", + "პაკისტანი", + "პალაუ", + "პალესტინა", + "პალმირა (ატოლი)", + "პანამა", + "პანტელერია", + "პაპუა-ახალი გვინეა", + "პარაგვაი", + "პერუ", + "პიტკერნის კუნძულები", + "პოლონეთი", + "პორტუგალია", + "პრინც-ედუარდის კუნძული", + "პუერტო-რიკო", + "რეუნიონი", + "როტუმა", + "რუანდა", + "რუმინეთი", + "რუსეთი", + "საბერძნეთი", + "სადავო ტერიტორიები", + "სალვადორი", + "სამოა", + "სამხ. კორეა", + "სამხრეთ ამერიკაშია", + "სამხრეთ ამერიკის", + "სამხრეთ აფრიკის რესპუბლიკა", + "სამხრეთი აფრიკა", + "სამხრეთი გეორგია და სამხრეთ სენდვიჩის კუნძულები", + "სამხრეთი სუდანი", + "სან-მარინო", + "სან-ტომე და პრინსიპი", + "საუდის არაბეთი", + "საფრანგეთი", + "საფრანგეთის გვიანა", + "საფრანგეთის პოლინეზია", + "საქართველო", + "საჰარის არაბთა დემოკრატიული რესპუბლიკა", + "სეიშელის კუნძულები", + "სენ-ბართელმი", + "სენ-მარტენი", + "სენ-პიერი და მიკელონი", + "სენეგალი", + "სენტ-ვინსენტი და გრენადინები", + "სენტ-კიტსი და ნევისი", + "სენტ-ლუსია", + "სერბეთი", + "სეუტა", + "სვაზილენდი", + "სვალბარდი", + "სიერა-ლეონე", + "სინგაპური", + "სირია", + "სლოვაკეთი", + "სლოვენია", + "სოკოტრა", + "სოლომონის კუნძულები", + "სომალი", + "სომალილენდი", + "სომხეთი", + "სუდანი", + "სუვერენული სახელმწიფოები", + "სურინამი", + "ტაივანი", + "ტაილანდი", + "ტანზანია", + "ტაჯიკეთი", + "ტერიტორიები", + "ტერქსისა და კაიკოსის კუნძულები", + "ტოგო", + "ტოკელაუ", + "ტონგა", + "ტრანსკონტინენტური ქვეყანა", + "ტრინიდადი და ტობაგო", + "ტუვალუ", + "ტუნისი", + "უგანდა", + "უზბეკეთი", + "უკრაინა", + "უნგრეთი", + "უოლისი და ფუტუნა", + "ურუგვაი", + "ფარერის კუნძულები", + "ფილიპინები", + "ფინეთი", + "ფიჯი", + "ფოლკლენდის კუნძულები", + "ქვეყნები", + "ქოქოსის კუნძულები", + "ქუვეითი", + "ღაზის სექტორი", + "ყაზახეთი", + "ყირგიზეთი", + "შვედეთი", + "შვეიცარია", + "შობის კუნძული", + "შრი-ლანკა", + "ჩადი", + "ჩერნოგორია", + "ჩეჩნეთის რესპუბლიკა იჩქერია", + "ჩეხეთი", + "ჩილე", + "ჩინეთი", + "ჩრდ. კორეა", + "ჩრდილოეთ ამერიკის", + "ჩრდილოეთ მარიანას კუნძულები", + "ჩრდილოეთი აფრიკა", + "ჩრდილოეთი კორეა", + "ჩრდილოეთი მარიანას კუნძულები", + "ცენტრალური აფრიკა", + "ცენტრალური აფრიკის რესპუბლიკა", + "წევრები", + "წმინდა ელენე", + "წმინდა ელენეს კუნძული", + "ხორვატია", + "ჯერსი", + "ჯიბუტი", + "ჰავაი", + "ჰაიტი", + "ჰერდი და მაკდონალდის კუნძულები", + "ჰონდურასი", + "ჰონკონგი" + ]; + +},{}],429:[function(require,module,exports){ + 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"); + address.country = require("./country"); + address.building_number = require("./building_number"); + address.street_suffix = require("./street_suffix"); + address.secondary_address = require("./secondary_address"); + address.postcode = require("./postcode"); + address.city_name = require("./city_name"); + 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":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##" + ]; + +},{}],432:[function(require,module,exports){ + module["exports"] = [ + "კორპ. ##", + "შენობა ###" + ]; + +},{}],433:[function(require,module,exports){ + module.exports=require(25) +},{"/Users/a/dev/faker.js/lib/locales/de/address/street_address.js":25}],434:[function(require,module,exports){ + module["exports"] = [ + "#{street_title} #{street_suffix}" + ]; + +},{}],435:[function(require,module,exports){ + module["exports"] = [ + "გამზ.", + "გამზირი", + "ქ.", + "ქუჩა", + "ჩიხი", + "ხეივანი" + ]; + +},{}],436:[function(require,module,exports){ + module["exports"] = [ + "აბაშიძის", + "აბესაძის", + "აბულაძის", + "აგლაძის", + "ადლერის", + "ავიაქიმიის", + "ავლაბრის", + "ათარბეგოვის", + "ათონელის", + "ალავერდოვის", + "ალექსიძის", + "ალილუევის", + "ალმასიანის", + "ამაღლების", + "ამირეჯიბის", + "ანაგის", + "ანდრონიკაშვილის", + "ანთელავას", + "ანჯაფარიძის", + "არაგვის", + "არდონის", + "არეშიძის", + "ასათიანის", + "ასკურავას", + "ასლანიდის", + "ატენის", + "აფხაზი", + "აღმაშენებლის", + "ახალშენის", + "ახვლედიანის", + "ბააზოვის", + "ბაბისხევის", + "ბაბუშკინის", + "ბაგრატიონის", + "ბალანჩივაძეების", + "ბალანჩივაძის", + "ბალანჩინის", + "ბალმაშევის", + "ბარამიძის", + "ბარნოვის", + "ბაშალეიშვილის", + "ბევრეთის", + "ბელინსკის", + "ბელოსტოკის", + "ბენაშვილის", + "ბეჟანიშვილის", + "ბერიძის", + "ბოლქვაძის", + "ბოცვაძის", + "ბოჭორიშვილის", + "ბოჭორიძის", + "ბუაჩიძის", + "ბუდაპეშტის", + "ბურკიაშვილის", + "ბურძგლას", + "გაბესკირიას", + "გაგარინის", + "გაზაფხულის", + "გამრეკელის", + "გამსახურდიას", + "გარეჯელის", + "გეგეჭკორის", + "გედაურის", + "გელოვანი", + "გელოვანის", + "გერცენის", + "გლდანის", + "გოგებაშვილის", + "გოგიბერიძის", + "გოგოლის", + "გონაშვილის", + "გორგასლის", + "გრანელის", + "გრიზოდუბოვას", + "გრინევიცკის", + "გრომოვას", + "გრუზინსკის", + "გუდიაშვილის", + "გულრიფშის", + "გულუას", + "გურამიშვილის", + "გურგენიძის", + "დადიანის", + "დავითაშვილის", + "დამაკავშირებელი", + "დარიალის", + "დედოფლისწყაროს", + "დეპუტატის", + "დიდგორის", + "დიდი", + "დიდუბის", + "დიუმას", + "დიღმის", + "დიღომში", + "დოლიძის", + "დუნდუას", + "დურმიშიძის", + "ელიავას", + "ენგელსის", + "ენგურის", + "ეპისკოპოსის", + "ერისთავი", + "ერისთავის", + "ვაზისუბნის", + "ვაკელის", + "ვართაგავას", + "ვატუტინის", + "ვაჩნაძის", + "ვაცეკის", + "ვეკუას", + "ვეშაპურის", + "ვირსალაძის", + "ვოლოდარსკის", + "ვორონინის", + "ზაარბრიუკენის", + "ზაზიაშვილის", + "ზაზიშვილის", + "ზაკომოლდინის", + "ზანდუკელის", + "ზაქარაიას", + "ზაქარიაძის", + "ზახაროვის", + "ზაჰესის", + "ზნაურის", + "ზურაბაშვილის", + "ზღვის", + "თაბუკაშვილის", + "თავაძის", + "თავისუფლების", + "თამარაშვილის", + "თაქთაქიშვილის", + "თბილელის", + "თელიას", + "თორაძის", + "თოფურიძის", + "იალბუზის", + "იამანიძის", + "იაშვილის", + "იბერიის", + "იერუსალიმის", + "ივანიძის", + "ივერიელის", + "იზაშვილის", + "ილურიძის", + "იმედაშვილის", + "იმედაძის", + "იმედის", + "ინანიშვილის", + "ინგოროყვას", + "ინდუსტრიალიზაციის", + "ინჟინრის", + "ინწკირველის", + "ირბახის", + "ირემაშვილის", + "ისაკაძის", + "ისპასჰანლის", + "იტალიის", + "იუნკერთა", + "კათალიკოსის", + "კაიროს", + "კაკაბაძის", + "კაკაბეთის", + "კაკლიანის", + "კალანდაძის", + "კალიაევის", + "კალინინის", + "კამალოვის", + "კამოს", + "კაშენის", + "კახოვკის", + "კედიას", + "კელაპტრიშვილის", + "კერესელიძის", + "კეცხოველის", + "კიბალჩიჩის", + "კიკნაძის", + "კიროვის", + "კობარეთის", + "კოლექტივიზაციის", + "კოლმეურნეობის", + "კოლხეთის", + "კომკავშირის", + "კომუნისტური", + "კონსტიტუციის", + "კოოპერაციის", + "კოსტავას", + "კოტეტიშვილის", + "კოჩეტკოვის", + "კოჯრის", + "კრონშტადტის", + "კროპოტკინის", + "კრუპსკაიას", + "კუიბიშევის", + "კურნატოვსკის", + "კურტანოვსკის", + "კუტუზოვის", + "ლაღიძის", + "ლელაშვილის", + "ლენინაშენის", + "ლენინგრადის", + "ლენინის", + "ლენის", + "ლეონიძის", + "ლვოვის", + "ლორთქიფანიძის", + "ლოტკინის", + "ლუბლიანის", + "ლუბოვსკის", + "ლუნაჩარსკის", + "ლუქსემბურგის", + "მაგნიტოგორსკის", + "მაზნიაშვილის", + "მაისურაძის", + "მამარდაშვილის", + "მამაცაშვილის", + "მანაგაძის", + "მანჯგალაძის", + "მარის", + "მარუაშვილის", + "მარქსის", + "მარჯანის", + "მატროსოვის", + "მაჭავარიანი", + "მახალდიანის", + "მახარაძის", + "მებაღიშვილის", + "მეგობრობის", + "მელაანის", + "მერკვილაძის", + "მესხიას", + "მესხის", + "მეტეხის", + "მეტრეველი", + "მეჩნიკოვის", + "მთავარანგელოზის", + "მიასნიკოვის", + "მილორავას", + "მიმინოშვილის", + "მიროტაძის", + "მიქატაძის", + "მიქელაძის", + "მონტინის", + "მორეტის", + "მოსკოვის", + "მრევლიშვილის", + "მუშკორის", + "მუჯირიშვილის", + "მშვიდობის", + "მცხეთის", + "ნადირაძის", + "ნაკაშიძის", + "ნარიმანოვის", + "ნასიძის", + "ნაფარეულის", + "ნეკრასოვის", + "ნიაღვრის", + "ნინიძის", + "ნიშნიანიძის", + "ობოლაძის", + "ონიანის", + "ოჟიოს", + "ორახელაშვილის", + "ორბელიანის", + "ორჯონიკიძის", + "ოქტომბრის", + "ოცდაექვსი", + "პავლოვის", + "პარალელურის", + "პარიზის", + "პეკინის", + "პეროვსკაიას", + "პეტეფის", + "პიონერის", + "პირველი", + "პისარევის", + "პლეხანოვის", + "პრავდის", + "პროლეტარიატის", + "ჟელიაბოვის", + "ჟვანიას", + "ჟორდანიას", + "ჟღენტი", + "ჟღენტის", + "რადიანის", + "რამიშვილი", + "რასკოვას", + "რენინგერის", + "რინგის", + "რიჟინაშვილის", + "რობაქიძის", + "რობესპიერის", + "რუსის", + "რუხაძის", + "რჩეულიშვილის", + "სააკაძის", + "საბადურის", + "საბაშვილის", + "საბურთალოს", + "საბჭოს", + "საგურამოს", + "სამრეკლოს", + "სამღერეთის", + "სანაკოევის", + "სარაჯიშვილის", + "საჯაიას", + "სევასტოპოლის", + "სერგი", + "სვანიძის", + "სვერდლოვის", + "სტახანოვის", + "სულთნიშნის", + "სურგულაძის", + "სხირტლაძის", + "ტაბიძის", + "ტატიშვილის", + "ტელმანის", + "ტერევერკოს", + "ტეტელაშვილის", + "ტოვსტონოგოვის", + "ტოროშელიძის", + "ტრაქტორის", + "ტრიკოტაჟის", + "ტურბინის", + "უბილავას", + "უბინაშვილის", + "უზნაძის", + "უკლებას", + "ულიანოვის", + "ურიდიას", + "ფაბრიციუსის", + "ფაღავას", + "ფერისცვალების", + "ფიგნერის", + "ფიზკულტურის", + "ფიოლეტოვის", + "ფიფიების", + "ფოცხიშვილის", + "ქართველიშვილის", + "ქართლელიშვილის", + "ქინქლაძის", + "ქიქოძის", + "ქსოვრელის", + "ქუთათელაძის", + "ქუთათელის", + "ქურდიანის", + "ღოღობერიძის", + "ღუდუშაურის", + "ყავლაშვილის", + "ყაზბეგის", + "ყარყარაშვილის", + "ყიფიანის", + "ყუშიტაშვილის", + "შანიძის", + "შარტავას", + "შატილოვის", + "შაუმიანის", + "შენგელაიას", + "შერვაშიძის", + "შეროზიას", + "შირშოვის", + "შმიდტის", + "შრომის", + "შუშინის", + "შჩორსის", + "ჩალაუბნის", + "ჩანტლაძის", + "ჩაპაევის", + "ჩაჩავას", + "ჩელუსკინელების", + "ჩერნიახოვსკის", + "ჩერქეზიშვილი", + "ჩერქეზიშვილის", + "ჩვიდმეტი", + "ჩიტაიას", + "ჩიტაძის", + "ჩიქვანაიას", + "ჩიქობავას", + "ჩიხლაძის", + "ჩოდრიშვილის", + "ჩოლოყაშვილის", + "ჩუღურეთის", + "ცაბაძის", + "ცაგარელის", + "ცეტკინის", + "ცინცაძის", + "ცისკარიშვილის", + "ცურტაველის", + "ცქიტიშვილის", + "ცხაკაიას", + "ძმობის", + "ძნელაძის", + "წერეთლის", + "წითელი", + "წითელწყაროს", + "წინამძღვრიშვილის", + "წულაძის", + "წულუკიძის", + "ჭაბუკიანის", + "ჭავჭავაძის", + "ჭანტურიას", + "ჭოველიძის", + "ჭონქაძის", + "ჭყონდიდელის", + "ხანძთელის", + "ხვამლის", + "ხვინგიას", + "ხვიჩიას", + "ხიმშიაშვილის", + "ხმელნიცკის", + "ხორნაბუჯის", + "ხრამჰესის", + "ხუციშვილის", + "ჯავახიშვილის", + "ჯაფარიძის", + "ჯიბლაძის", + "ჯორჯიაშვილის" + ]; + +},{}],437:[function(require,module,exports){ + module["exports"] = [ + "(+995 32) 2-##-##-##", + "032-2-##-##-##", + "032-2-######", + "032-2-###-###", + "032 2 ## ## ##", + "032 2 ######", + "2 ## ## ##", + "2######", + "2 ### ###" + ]; + +},{}],438:[function(require,module,exports){ + arguments[4][29][0].apply(exports,arguments) +},{"./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":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}" + ]; + +},{}],441:[function(require,module,exports){ + module["exports"] = [ + "შპს", + "სს", + "ააიპ", + "სსიპ" + ]; + +},{}],442:[function(require,module,exports){ + module["exports"] = [ + "ჯგუფი", + "და კომპანია", + "სტუდია", + "გრუპი" + ]; + +},{}],443:[function(require,module,exports){ + var ge = {}; + module['exports'] = ge; + ge.title = "Georgian"; + ge.separator = " და "; + ge.name = require("./name"); + ge.address = require("./address"); + ge.internet = require("./internet"); + ge.company = require("./company"); + ge.phone_number = require("./phone_number"); + ge.cell_phone = require("./cell_phone"); + +},{"./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" + ]; + +},{}],445:[function(require,module,exports){ + module["exports"] = [ + "gmail.com", + "yahoo.com", + "posta.ge" + ]; + +},{}],446:[function(require,module,exports){ + arguments[4][37][0].apply(exports,arguments) +},{"./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"] = [ + "აგული", + "აგუნა", + "ადოლა", + "ავთანდილ", + "ავთო", + "აკაკი", + "აკო", + "ალეკო", + "ალექსანდრე", + "ალექსი", + "ალიო", + "ამირან", + "ანა", + "ანანო", + "ანზორ", + "ანნა", + "ანუკა", + "ანუკი", + "არჩილ", + "ასკილა", + "ასლანაზ", + "აჩიკო", + "ბადრი", + "ბაია", + "ბარბარე", + "ბაქარ", + "ბაჩა", + "ბაჩანა", + "ბაჭუა", + "ბაჭუკი", + "ბახვა", + "ბელა", + "ბერა", + "ბერდია", + "ბესიკ", + "ბესიკ", + "ბესო", + "ბექა", + "ბიძინა", + "ბიჭიკო", + "ბოჩია", + "ბოცო", + "ბროლა", + "ბუბუ", + "ბუდუ", + "ბუხუტი", + "გაგა", + "გაგი", + "გახა", + "გეგა", + "გეგი", + "გედია", + "გელა", + "გენადი", + "გვადი", + "გვანცა", + "გვანჯი", + "გვიტია", + "გვრიტა", + "გია", + "გიგა", + "გიგი", + "გიგილო", + "გიგლა", + "გიგოლი", + "გივი", + "გივიკო", + "გიორგი", + "გოგი", + "გოგიტა", + "გოგიჩა", + "გოგოთურ", + "გოგოლა", + "გოდერძი", + "გოლა", + "გოჩა", + "გრიგოლ", + "გუგა", + "გუგუ", + "გუგულა", + "გუგული", + "გუგუნა", + "გუკა", + "გულარისა", + "გულვარდი", + "გულვარდისა", + "გულთამზე", + "გულია", + "გულიკო", + "გულისა", + "გულნარა", + "გურამ", + "დავით", + "დალი", + "დარეჯან", + "დიანა", + "დიმიტრი", + "დოდო", + "დუტუ", + "ეთერ", + "ეთო", + "ეკა", + "ეკატერინე", + "ელგუჯა", + "ელენა", + "ელენე", + "ელზა", + "ელიკო", + "ელისო", + "ემზარ", + "ეშხა", + "ვალენტინა", + "ვალერი", + "ვანო", + "ვაჟა", + "ვაჟა", + "ვარდო", + "ვარსკვლავისა", + "ვასიკო", + "ვასილ", + "ვატო", + "ვახო", + "ვახტანგ", + "ვენერა", + "ვერა", + "ვერიკო", + "ზაზა", + "ზაირა", + "ზაურ", + "ზეზვა", + "ზვიად", + "ზინა", + "ზოია", + "ზუკა", + "ზურა", + "ზურაბ", + "ზურია", + "ზურიკო", + "თაზო", + "თათა", + "თათია", + "თათული", + "თაია", + "თაკო", + "თალიკო", + "თამაზ", + "თამარ", + "თამარა", + "თამთა", + "თამთიკე", + "თამი", + "თამილა", + "თამრიკო", + "თამრო", + "თამუნა", + "თამჩო", + "თანანა", + "თანდილა", + "თაყა", + "თეა", + "თებრონე", + "თეიმურაზ", + "თემურ", + "თენგიზ", + "თენგო", + "თეონა", + "თიკა", + "თიკო", + "თიკუნა", + "თინა", + "თინათინ", + "თინიკო", + "თმაგიშერა", + "თორნიკე", + "თუთა", + "თუთია", + "ია", + "იათამზე", + "იამზე", + "ივანე", + "ივერი", + "ივქირიონ", + "იზოლდა", + "ილია", + "ილიკო", + "იმედა", + "ინგა", + "იოსებ", + "ირაკლი", + "ირინა", + "ირინე", + "ირინკა", + "ირმა", + "იური", + "კაკო", + "კალე", + "კატო", + "კახა", + "კახაბერ", + "კეკელა", + "კესანე", + "კესო", + "კვირია", + "კიტა", + "კობა", + "კოკა", + "კონსტანტინე", + "კოსტა", + "კოტე", + "კუკური", + "ლადო", + "ლალი", + "ლამაზა", + "ლამარა", + "ლამზირა", + "ლაშა", + "ლევან", + "ლეილა", + "ლელა", + "ლენა", + "ლერწამისა", + "ლექსო", + "ლია", + "ლიანა", + "ლიზა", + "ლიზიკო", + "ლილე", + "ლილი", + "ლილიკო", + "ლომია", + "ლუიზა", + "მაგული", + "მადონა", + "მათიკო", + "მაია", + "მაიკო", + "მაისა", + "მაკა", + "მაკო", + "მაკუნა", + "მალხაზ", + "მამამზე", + "მამია", + "მამისა", + "მამისთვალი", + "მამისიმედი", + "მამუკა", + "მამულა", + "მანანა", + "მანჩო", + "მარადი", + "მარი", + "მარია", + "მარიამი", + "მარიკა", + "მარინა", + "მარინე", + "მარიტა", + "მაყვალა", + "მაყვალა", + "მაშიკო", + "მაშო", + "მაცაცო", + "მგელია", + "მგელიკა", + "მედეა", + "მეკაშო", + "მელანო", + "მერაბ", + "მერი", + "მეტია", + "მზაღო", + "მზევინარ", + "მზეთამზე", + "მზეთვალა", + "მზეონა", + "მზექალა", + "მზეხა", + "მზეხათუნი", + "მზია", + "მზირა", + "მზისადარ", + "მზისთანადარი", + "მზიულა", + "მთვარისა", + "მინდია", + "მიშა", + "მიშიკო", + "მიხეილ", + "მნათობი", + "მნათობისა", + "მოგელი", + "მონავარდისა", + "მურმან", + "მუხრან", + "ნაზი", + "ნაზიკო", + "ნათელა", + "ნათია", + "ნაირა", + "ნანა", + "ნანი", + "ნანიკო", + "ნანუკა", + "ნანული", + "ნარგიზი", + "ნასყიდა", + "ნატალია", + "ნატო", + "ნელი", + "ნენე", + "ნესტან", + "ნია", + "ნიაკო", + "ნიკა", + "ნიკოლოზ", + "ნინა", + "ნინაკა", + "ნინი", + "ნინიკო", + "ნინო", + "ნინუკა", + "ნინუცა", + "ნოდარ", + "ნოდო", + "ნონა", + "ნორა", + "ნუგზარ", + "ნუგო", + "ნუკა", + "ნუკი", + "ნუკრი", + "ნუნუ", + "ნუნუ", + "ნუნუკა", + "ნუცა", + "ნუცი", + "ოთარ", + "ოთია", + "ოთო", + "ომარ", + "ორბელ", + "ოტია", + "ოქროპირ", + "პაატა", + "პაპუნა", + "პატარკაცი", + "პატარქალი", + "პეპელა", + "პირვარდისა", + "პირიმზე", + "ჟამიერა", + "ჟამიტა", + "ჟამუტა", + "ჟუჟუნა", + "რამაზ", + "რევაზ", + "რეზი", + "რეზო", + "როზა", + "რომან", + "რუსკა", + "რუსუდან", + "საბა", + "სალი", + "სალომე", + "სანათა", + "სანდრო", + "სერგო", + "სესია", + "სეხნია", + "სვეტლანა", + "სიხარულა", + "სოსო", + "სოფიკო", + "სოფიო", + "სოფო", + "სულა", + "სულიკო", + "ტარიელ", + "ტასიკო", + "ტასო", + "ტატიანა", + "ტატო", + "ტეტია", + "ტურია", + "უმანკო", + "უტა", + "უჩა", + "ფაქიზო", + "ფაცია", + "ფეფელა", + "ფეფენა", + "ფეფიკო", + "ფეფო", + "ფოსო", + "ფოფო", + "ქაბატო", + "ქავთარი", + "ქალია", + "ქართლოს", + "ქეთათო", + "ქეთევან", + "ქეთი", + "ქეთინო", + "ქეთო", + "ქველი", + "ქიტესა", + "ქიშვარდი", + "ქობული", + "ქრისტესია", + "ქტისტეფორე", + "ქურციკა", + "ღარიბა", + "ღვთისავარი", + "ღვთისია", + "ღვთისო", + "ღვინია", + "ღუღუნა", + "ყაითამზა", + "ყაყიტა", + "ყვარყვარე", + "ყიასა", + "შაბური", + "შაკო", + "შალვა", + "შალიკო", + "შანშე", + "შარია", + "შაქარა", + "შაქრო", + "შოთა", + "შორენა", + "შოშია", + "შუქია", + "ჩიორა", + "ჩიტო", + "ჩიტო", + "ჩოყოლა", + "ცაგო", + "ცაგული", + "ცანგალა", + "ცარო", + "ცაცა", + "ცაცო", + "ციალა", + "ციკო", + "ცინარა", + "ცირა", + "ცისანა", + "ცისია", + "ცისკარა", + "ცისკარი", + "ცისმარა", + "ცისმარი", + "ციური", + "ციცი", + "ციცია", + "ციცინო", + "ცოტნე", + "ცოქალა", + "ცუცა", + "ცხვარი", + "ძაბული", + "ძამისა", + "ძაღინა", + "ძიძია", + "წათე", + "წყალობა", + "ჭაბუკა", + "ჭიაბერ", + "ჭიკჭიკა", + "ჭიჭია", + "ჭიჭიკო", + "ჭოლა", + "ხათუნა", + "ხარება", + "ხატია", + "ხახულა", + "ხახუტა", + "ხეჩუა", + "ხვიჩა", + "ხიზანა", + "ხირხელა", + "ხობელასი", + "ხოხია", + "ხოხიტა", + "ხუტა", + "ხუცია", + "ჯაბა", + "ჯავახი", + "ჯარჯი", + "ჯემალ", + "ჯონდო", + "ჯოტო", + "ჯუბი", + "ჯულიეტა", + "ჯუმბერ", + "ჰამლეტ" + ]; + +},{}],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"] = [ + "აბაზაძე", + "აბაშიძე", + "აბრამაშვილი", + "აბუსერიძე", + "აბშილავა", + "ავაზნელი", + "ავალიშვილი", + "ამილახვარი", + "ანთაძე", + "ასლამაზიშვილი", + "ასპანიძე", + "აშკარელი", + "ახალბედაშვილი", + "ახალკაცი", + "ახვლედიანი", + "ბარათაშვილი", + "ბარდაველიძე", + "ბახტაძე", + "ბედიანიძე", + "ბერიძე", + "ბერუაშვილი", + "ბეჟანიშვილი", + "ბოგველიშვილი", + "ბოტკოველი", + "გაბრიჩიძე", + "გაგნიძე", + "გამრეკელი", + "გელაშვილი", + "გზირიშვილი", + "გიგაური", + "გურამიშვილი", + "გურგენიძე", + "დადიანი", + "დავითიშვილი", + "დათუაშვილი", + "დარბაისელი", + "დეკანოიძე", + "დვალი", + "დოლაბერიძე", + "ედიშერაშვილი", + "ელიზბარაშვილი", + "ელიოზაშვილი", + "ერისთავი", + "ვარამაშვილი", + "ვარდიაშვილი", + "ვაჩნაძე", + "ვარდანიძე", + "ველიაშვილი", + "ველიჯანაშვილი", + "ზარანდია", + "ზარიძე", + "ზედგინიძე", + "ზუბიაშვილი", + "თაბაგარი", + "თავდგირიძე", + "თათარაშვილი", + "თამაზაშვილი", + "თამარაშვილი", + "თაქთაქიშვილი", + "თაყაიშვილი", + "თბილელი", + "თუხარელი", + "იაშვილი", + "იგითხანიშვილი", + "ინასარიძე", + "იშხნელი", + "კანდელაკი", + "კაცია", + "კერესელიძე", + "კვირიკაშვილი", + "კიკნაძე", + "კლდიაშვილი", + "კოვზაძე", + "კოპაძე", + "კოპტონაშვილი", + "კოშკელაშვილი", + "ლაბაძე", + "ლეკიშვილი", + "ლიქოკელი", + "ლოლაძე", + "ლურსმანაშვილი", + "მაისურაძე", + "მარტოლეკი", + "მაღალაძე", + "მახარაშვილი", + "მგალობლიშვილი", + "მეგრელიშვილი", + "მელაშვილი", + "მელიქიძე", + "მერაბიშვილი", + "მეფარიშვილი", + "მუჯირი", + "მჭედლიძე", + "მხეიძე", + "ნათაძე", + "ნაჭყებია", + "ნოზაძე", + "ოდიშვილი", + "ონოფრიშვილი", + "პარეხელაშვილი", + "პეტრიაშვილი", + "სააკაძე", + "სააკაშვილი", + "საგინაშვილი", + "სადუნიშვილი", + "საძაგლიშვილი", + "სებისკვერიძე", + "სეთური", + "სუთიაშვილი", + "სულაშვილი", + "ტაბაღუა", + "ტყეშელაშვილი", + "ულუმბელაშვილი", + "უნდილაძე", + "ქავთარაძე", + "ქართველიშვილი", + "ყაზბეგი", + "ყაუხჩიშვილი", + "შავლაშვილი", + "შალიკაშვილი", + "შონია", + "ჩიბუხაშვილი", + "ჩიხრაძე", + "ჩიქოვანი", + "ჩუბინიძე", + "ჩოლოყაშვილი", + "ჩოხელი", + "ჩხვიმიანი", + "ცალუღელაშვილი", + "ცაძიკიძე", + "ციციშვილი", + "ციხელაშვილი", + "ციხისთავი", + "ცხოვრებაძე", + "ცხომარია", + "წამალაიძე", + "წერეთელი", + "წიკლაური", + "წიფურია", + "ჭაბუკაშვილი", + "ჭავჭავაძე", + "ჭანტურია", + "ჭარელიძე", + "ჭიორელი", + "ჭუმბურიძე", + "ხაბაზი", + "ხარაძე", + "ხარატიშვილი", + "ხარატასშვილი", + "ხარისჭირაშვილი", + "ხარხელაური", + "ხაშმელაშვილი", + "ხეთაგური", + "ხიზამბარელი", + "ხიზანიშვილი", + "ხიმშიაშვილი", + "ხოსრუაშვილი", + "ხოჯივანიშვილი", + "ხუციშვილი", + "ჯაბადარი", + "ჯავახი", + "ჯავახიშვილი", + "ჯანელიძე", + "ჯაფარიძე", + "ჯაყელი", + "ჯაჯანიძე", + "ჯვარელია", + "ჯინიუზაშვილი", + "ჯუღაშვილი" + ]; + +},{}],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}" + ]; + +},{}],451:[function(require,module,exports){ + module["exports"] = [ + "ბ-ნი", + "ბატონი", + "ქ-ნი", + "ქალბატონი" + ]; + +},{}],452:[function(require,module,exports){ + module["exports"] = { + "descriptor": [ + "გენერალური", + "მთავარი", + "სტაჟიორ", + "უმცროსი", + "ყოფილი", + "წამყვანი" + ], + "level": [ + "აღრიცხვების", + "ბრენდინგის", + "ბრენიდს", + "ბუღალტერიის", + "განყოფილების", + "გაყიდვების", + "გუნდის", + "დახმარების", + "დიზაინის", + "თავდაცვის", + "ინფორმაციის", + "კვლევების", + "კომუნიკაციების", + "მარკეტინგის", + "ოპერაციათა", + "ოპტიმიზაციების", + "პიარ", + "პროგრამის", + "საქმეთა", + "ტაქტიკური", + "უსაფრთხოების", + "ფინანსთა", + "ქსელის", + "ხარისხის", + "ჯგუფის" + ], + "job": [ + "აგენტი", + "ადვოკატი", + "ადმინისტრატორი", + "არქიტექტორი", + "ასისტენტი", + "აღმასრულებელი დირექტორი", + "დეველოპერი", + "დეკანი", + "დიზაინერი", + "დირექტორი", + "ელექტრიკოსი", + "ექსპერტი", + "ინჟინერი", + "იურისტი", + "კონსტრუქტორი", + "კონსულტანტი", + "კოორდინატორი", + "ლექტორი", + "მასაჟისტი", + "მემანქანე", + "მენეჯერი", + "მძღოლი", + "მწვრთნელი", + "ოპერატორი", + "ოფიცერი", + "პედაგოგი", + "პოლიციელი", + "პროგრამისტი", + "პროდიუსერი", + "პრორექტორი", + "ჟურნალისტი", + "რექტორი", + "სპეციალისტი", + "სტრატეგისტი", + "ტექნიკოსი", + "ფოტოგრაფი", + "წარმომადგენელი" + ] + }; + +},{}],453:[function(require,module,exports){ + module["exports"] = [ + "5##-###-###", + "5########", + "5## ## ## ##", + "5## ######", + "5## ### ###", + "995 5##-###-###", + "995 5########", + "995 5## ## ## ##", + "995 5## ######", + "995 5## ### ###", + "+995 5##-###-###", + "+995 5########", + "+995 5## ## ## ##", + "+995 5## ######", + "+995 5## ### ###", + "(+995) 5##-###-###", + "(+995) 5########", + "(+995) 5## ## ## ##", + "(+995) 5## ######", + "(+995) 5## ### ###" + ]; + +},{}],454:[function(require,module,exports){ + arguments[4][47][0].apply(exports,arguments) +},{"./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}" + ]; + +},{}],488:[function(require,module,exports){ + module["exports"] = [ + "San", + "Borgo", + "Sesto", + "Quarto", + "Settimo" + ]; + +},{}],489:[function(require,module,exports){ + module["exports"] = [ + "a mare", + "lido", + "ligure", + "del friuli", + "salentino", + "calabro", + "veneto", + "nell'emilia", + "umbro", + "laziale", + "terme", + "sardo" + ]; + +},{}],490:[function(require,module,exports){ + module["exports"] = [ + "Afghanistan", + "Albania", + "Algeria", + "American Samoa", + "Andorra", + "Angola", + "Anguilla", + "Antartide (territori a sud del 60° parallelo)", + "Antigua e Barbuda", + "Argentina", + "Armenia", + "Aruba", + "Australia", + "Austria", + "Azerbaijan", + "Bahamas", + "Bahrain", + "Bangladesh", + "Barbados", + "Bielorussia", + "Belgio", + "Belize", + "Benin", + "Bermuda", + "Bhutan", + "Bolivia", + "Bosnia e Herzegovina", + "Botswana", + "Bouvet Island (Bouvetoya)", + "Brasile", + "Territorio dell'arcipelago indiano", + "Isole Vergini Britanniche", + "Brunei Darussalam", + "Bulgaria", + "Burkina Faso", + "Burundi", + "Cambogia", + "Cameroon", + "Canada", + "Capo Verde", + "Isole Cayman", + "Repubblica Centrale Africana", + "Chad", + "Cile", + "Cina", + "Isola di Pasqua", + "Isola di Cocos (Keeling)", + "Colombia", + "Comoros", + "Congo", + "Isole Cook", + "Costa Rica", + "Costa d'Avorio", + "Croazia", + "Cuba", + "Cipro", + "Repubblica Ceca", + "Danimarca", + "Gibuti", + "Repubblica Dominicana", + "Equador", + "Egitto", + "El Salvador", + "Guinea Equatoriale", + "Eritrea", + "Estonia", + "Etiopia", + "Isole Faroe", + "Isole Falkland (Malvinas)", + "Fiji", + "Finlandia", + "Francia", + "Guyana Francese", + "Polinesia Francese", + "Territori Francesi del sud", + "Gabon", + "Gambia", + "Georgia", + "Germania", + "Ghana", + "Gibilterra", + "Grecia", + "Groenlandia", + "Grenada", + "Guadalupa", + "Guam", + "Guatemala", + "Guernsey", + "Guinea", + "Guinea-Bissau", + "Guyana", + "Haiti", + "Heard Island and McDonald Islands", + "Città del Vaticano", + "Honduras", + "Hong Kong", + "Ungheria", + "Islanda", + "India", + "Indonesia", + "Iran", + "Iraq", + "Irlanda", + "Isola di Man", + "Israele", + "Italia", + "Giamaica", + "Giappone", + "Jersey", + "Giordania", + "Kazakhstan", + "Kenya", + "Kiribati", + "Korea", + "Kuwait", + "Republicca Kirgiza", + "Repubblica del Laos", + "Latvia", + "Libano", + "Lesotho", + "Liberia", + "Libyan Arab Jamahiriya", + "Liechtenstein", + "Lituania", + "Lussemburgo", + "Macao", + "Macedonia", + "Madagascar", + "Malawi", + "Malesia", + "Maldive", + "Mali", + "Malta", + "Isole Marshall", + "Martinica", + "Mauritania", + "Mauritius", + "Mayotte", + "Messico", + "Micronesia", + "Moldova", + "Principato di Monaco", + "Mongolia", + "Montenegro", + "Montserrat", + "Marocco", + "Mozambico", + "Myanmar", + "Namibia", + "Nauru", + "Nepal", + "Antille Olandesi", + "Olanda", + "Nuova Caledonia", + "Nuova Zelanda", + "Nicaragua", + "Niger", + "Nigeria", + "Niue", + "Isole Norfolk", + "Northern Mariana Islands", + "Norvegia", + "Oman", + "Pakistan", + "Palau", + "Palestina", + "Panama", + "Papua Nuova Guinea", + "Paraguay", + "Peru", + "Filippine", + "Pitcairn Islands", + "Polonia", + "Portogallo", + "Porto Rico", + "Qatar", + "Reunion", + "Romania", + "Russia", + "Rwanda", + "San Bartolomeo", + "Sant'Elena", + "Saint Kitts and Nevis", + "Saint Lucia", + "Saint Martin", + "Saint Pierre and Miquelon", + "Saint Vincent and the Grenadines", + "Samoa", + "San Marino", + "Sao Tome and Principe", + "Arabia Saudita", + "Senegal", + "Serbia", + "Seychelles", + "Sierra Leone", + "Singapore", + "Slovenia", + "Isole Solomon", + "Somalia", + "Sud Africa", + "Georgia del sud e South Sandwich Islands", + "Spagna", + "Sri Lanka", + "Sudan", + "Suriname", + "Svalbard & Jan Mayen Islands", + "Swaziland", + "Svezia", + "Svizzera", + "Siria", + "Taiwan", + "Tajikistan", + "Tanzania", + "Tailandia", + "Timor-Leste", + "Togo", + "Tokelau", + "Tonga", + "Trinidad e Tobago", + "Tunisia", + "Turchia", + "Turkmenistan", + "Isole di Turks and Caicos", + "Tuvalu", + "Uganda", + "Ucraina", + "Emirati Arabi Uniti", + "Regno Unito", + "Stati Uniti d'America", + "United States Minor Outlying Islands", + "Isole Vergini Statunitensi", + "Uruguay", + "Uzbekistan", + "Vanuatu", + "Venezuela", + "Vietnam", + "Wallis and Futuna", + "Western Sahara", + "Yemen", + "Zambia", + "Zimbabwe" + ]; + +},{}],491:[function(require,module,exports){ + module["exports"] = [ + "Italia" + ]; + +},{}],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"); + address.building_number = require("./building_number"); + address.street_suffix = require("./street_suffix"); + address.secondary_address = require("./secondary_address"); + address.postcode = require("./postcode"); + address.state = require("./state"); + address.state_abbr = require("./state_abbr"); + address.city = require("./city"); + address.street_name = require("./street_name"); + address.street_address = require("./street_address"); + address.default_country = require("./default_country"); + +},{"./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 #" + ]; + +},{}],495:[function(require,module,exports){ + module["exports"] = [ + "Agrigento", + "Alessandria", + "Ancona", + "Aosta", + "Arezzo", + "Ascoli Piceno", + "Asti", + "Avellino", + "Bari", + "Barletta-Andria-Trani", + "Belluno", + "Benevento", + "Bergamo", + "Biella", + "Bologna", + "Bolzano", + "Brescia", + "Brindisi", + "Cagliari", + "Caltanissetta", + "Campobasso", + "Carbonia-Iglesias", + "Caserta", + "Catania", + "Catanzaro", + "Chieti", + "Como", + "Cosenza", + "Cremona", + "Crotone", + "Cuneo", + "Enna", + "Fermo", + "Ferrara", + "Firenze", + "Foggia", + "Forlì-Cesena", + "Frosinone", + "Genova", + "Gorizia", + "Grosseto", + "Imperia", + "Isernia", + "La Spezia", + "L'Aquila", + "Latina", + "Lecce", + "Lecco", + "Livorno", + "Lodi", + "Lucca", + "Macerata", + "Mantova", + "Massa-Carrara", + "Matera", + "Messina", + "Milano", + "Modena", + "Monza e della Brianza", + "Napoli", + "Novara", + "Nuoro", + "Olbia-Tempio", + "Oristano", + "Padova", + "Palermo", + "Parma", + "Pavia", + "Perugia", + "Pesaro e Urbino", + "Pescara", + "Piacenza", + "Pisa", + "Pistoia", + "Pordenone", + "Potenza", + "Prato", + "Ragusa", + "Ravenna", + "Reggio Calabria", + "Reggio Emilia", + "Rieti", + "Rimini", + "Roma", + "Rovigo", + "Salerno", + "Medio Campidano", + "Sassari", + "Savona", + "Siena", + "Siracusa", + "Sondrio", + "Taranto", + "Teramo", + "Terni", + "Torino", + "Ogliastra", + "Trapani", + "Trento", + "Treviso", + "Trieste", + "Udine", + "Varese", + "Venezia", + "Verbano-Cusio-Ossola", + "Vercelli", + "Verona", + "Vibo Valentia", + "Vicenza", + "Viterbo" + ]; + +},{}],496:[function(require,module,exports){ + module["exports"] = [ + "AG", + "AL", + "AN", + "AO", + "AR", + "AP", + "AT", + "AV", + "BA", + "BT", + "BL", + "BN", + "BG", + "BI", + "BO", + "BZ", + "BS", + "BR", + "CA", + "CL", + "CB", + "CI", + "CE", + "CT", + "CZ", + "CH", + "CO", + "CS", + "CR", + "KR", + "CN", + "EN", + "FM", + "FE", + "FI", + "FG", + "FC", + "FR", + "GE", + "GO", + "GR", + "IM", + "IS", + "SP", + "AQ", + "LT", + "LE", + "LC", + "LI", + "LO", + "LU", + "MC", + "MN", + "MS", + "MT", + "ME", + "MI", + "MO", + "MB", + "NA", + "NO", + "NU", + "OT", + "OR", + "PD", + "PA", + "PR", + "PV", + "PG", + "PU", + "PE", + "PC", + "PI", + "PT", + "PN", + "PZ", + "PO", + "RG", + "RA", + "RC", + "RE", + "RI", + "RN", + "RM", + "RO", + "SA", + "VS", + "SS", + "SV", + "SI", + "SR", + "SO", + "TA", + "TE", + "TR", + "TO", + "OG", + "TP", + "TN", + "TV", + "TS", + "UD", + "VA", + "VE", + "VB", + "VC", + "VR", + "VV", + "VI", + "VT" + ]; + +},{}],497:[function(require,module,exports){ + module["exports"] = [ + "#{street_name} #{building_number}", + "#{street_name} #{building_number}, #{secondary_address}" + ]; + +},{}],498:[function(require,module,exports){ + module["exports"] = [ + "#{street_suffix} #{Name.first_name}", + "#{street_suffix} #{Name.last_name}" + ]; + +},{}],499:[function(require,module,exports){ + module["exports"] = [ + "Piazza", + "Strada", + "Via", + "Borgo", + "Contrada", + "Rotonda", + "Incrocio" + ]; + +},{}],500:[function(require,module,exports){ + module["exports"] = [ + "24 ore", + "24/7", + "terza generazione", + "quarta generazione", + "quinta generazione", + "sesta generazione", + "asimmetrica", + "asincrona", + "background", + "bi-direzionale", + "biforcata", + "bottom-line", + "coerente", + "coesiva", + "composita", + "sensibile al contesto", + "basta sul contesto", + "basata sul contenuto", + "dedicata", + "didattica", + "direzionale", + "discreta", + "dinamica", + "eco-centrica", + "esecutiva", + "esplicita", + "full-range", + "globale", + "euristica", + "alto livello", + "olistica", + "omogenea", + "ibrida", + "impattante", + "incrementale", + "intangibile", + "interattiva", + "intermediaria", + "locale", + "logistica", + "massimizzata", + "metodica", + "mission-critical", + "mobile", + "modulare", + "motivazionale", + "multimedia", + "multi-tasking", + "nazionale", + "neutrale", + "nextgeneration", + "non-volatile", + "object-oriented", + "ottima", + "ottimizzante", + "radicale", + "real-time", + "reciproca", + "regionale", + "responsiva", + "scalabile", + "secondaria", + "stabile", + "statica", + "sistematica", + "sistemica", + "tangibile", + "terziaria", + "uniforme", + "valore aggiunto" + ]; + +},{}],501:[function(require,module,exports){ + module["exports"] = [ + "valore aggiunto", + "verticalizzate", + "proattive", + "forti", + "rivoluzionari", + "scalabili", + "innovativi", + "intuitivi", + "strategici", + "e-business", + "mission-critical", + "24/7", + "globali", + "B2B", + "B2C", + "granulari", + "virtuali", + "virali", + "dinamiche", + "magnetiche", + "web", + "interattive", + "sexy", + "back-end", + "real-time", + "efficienti", + "front-end", + "distributivi", + "estensibili", + "mondiali", + "open-source", + "cross-platform", + "sinergiche", + "out-of-the-box", + "enterprise", + "integrate", + "di impatto", + "wireless", + "trasparenti", + "next-generation", + "cutting-edge", + "visionari", + "plug-and-play", + "collaborative", + "olistiche", + "ricche" + ]; + +},{}],502:[function(require,module,exports){ + module["exports"] = [ + "partnerships", + "comunità", + "ROI", + "soluzioni", + "e-services", + "nicchie", + "tecnologie", + "contenuti", + "supply-chains", + "convergenze", + "relazioni", + "architetture", + "interfacce", + "mercati", + "e-commerce", + "sistemi", + "modelli", + "schemi", + "reti", + "applicazioni", + "metriche", + "e-business", + "funzionalità", + "esperienze", + "webservices", + "metodologie" + ]; + +},{}],503:[function(require,module,exports){ + module["exports"] = [ + "implementate", + "utilizzo", + "integrate", + "ottimali", + "evolutive", + "abilitate", + "reinventate", + "aggregate", + "migliorate", + "incentivate", + "monetizzate", + "sinergizzate", + "strategiche", + "deploy", + "marchi", + "accrescitive", + "target", + "sintetizzate", + "spedizioni", + "massimizzate", + "innovazione", + "guida", + "estensioni", + "generate", + "exploit", + "transizionali", + "matrici", + "ricontestualizzate" + ]; + +},{}],504:[function(require,module,exports){ + module["exports"] = [ + "adattiva", + "avanzata", + "migliorata", + "assimilata", + "automatizzata", + "bilanciata", + "centralizzata", + "compatibile", + "configurabile", + "cross-platform", + "decentralizzata", + "digitalizzata", + "distribuita", + "piccola", + "ergonomica", + "esclusiva", + "espansa", + "estesa", + "configurabile", + "fondamentale", + "orizzontale", + "implementata", + "innovativa", + "integrata", + "intuitiva", + "inversa", + "gestita", + "obbligatoria", + "monitorata", + "multi-canale", + "multi-laterale", + "open-source", + "operativa", + "ottimizzata", + "organica", + "persistente", + "polarizzata", + "proattiva", + "programmabile", + "progressiva", + "reattiva", + "riallineata", + "ricontestualizzata", + "ridotta", + "robusta", + "sicura", + "condivisibile", + "stand-alone", + "switchabile", + "sincronizzata", + "sinergica", + "totale", + "universale", + "user-friendly", + "versatile", + "virtuale", + "visionaria" + ]; + +},{}],505:[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.bs_noun = require("./bs_noun"); + company.bs_verb = require("./bs_verb"); + company.bs_adjective = require("./bs_adjective"); + company.name = require("./name"); + +},{"./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}" + ]; + +},{}],507:[function(require,module,exports){ + module["exports"] = [ + "Abilità", + "Access", + "Adattatore", + "Algoritmo", + "Alleanza", + "Analizzatore", + "Applicazione", + "Approccio", + "Architettura", + "Archivio", + "Intelligenza artificiale", + "Array", + "Attitudine", + "Benchmark", + "Capacità", + "Sfida", + "Circuito", + "Collaborazione", + "Complessità", + "Concetto", + "Conglomerato", + "Contingenza", + "Core", + "Database", + "Data-warehouse", + "Definizione", + "Emulazione", + "Codifica", + "Criptazione", + "Firmware", + "Flessibilità", + "Previsione", + "Frame", + "framework", + "Funzione", + "Funzionalità", + "Interfaccia grafica", + "Hardware", + "Help-desk", + "Gerarchia", + "Hub", + "Implementazione", + "Infrastruttura", + "Iniziativa", + "Installazione", + "Set di istruzioni", + "Interfaccia", + "Soluzione internet", + "Intranet", + "Conoscenza base", + "Matrici", + "Matrice", + "Metodologia", + "Middleware", + "Migrazione", + "Modello", + "Moderazione", + "Monitoraggio", + "Moratoria", + "Rete", + "Architettura aperta", + "Sistema aperto", + "Orchestrazione", + "Paradigma", + "Parallelismo", + "Policy", + "Portale", + "Struttura di prezzo", + "Prodotto", + "Produttività", + "Progetto", + "Proiezione", + "Protocollo", + "Servizio clienti", + "Software", + "Soluzione", + "Standardizzazione", + "Strategia", + "Struttura", + "Successo", + "Sovrastruttura", + "Supporto", + "Sinergia", + "Task-force", + "Finestra temporale", + "Strumenti", + "Utilizzazione", + "Sito web", + "Forza lavoro" + ]; + +},{}],508:[function(require,module,exports){ + module["exports"] = [ + "SPA", + "e figli", + "Group", + "s.r.l." + ]; + +},{}],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":492,"./company":505,"./internet":512,"./name":514,"./phone_number":520}],510:[function(require,module,exports){ + module["exports"] = [ + "com", + "com", + "com", + "net", + "org", + "it", + "it", + "it" + ]; + +},{}],511:[function(require,module,exports){ + module["exports"] = [ + "gmail.com", + "yahoo.com", + "hotmail.com", + "email.it", + "libero.it", + "yahoo.it" + ]; + +},{}],512:[function(require,module,exports){ + arguments[4][37][0].apply(exports,arguments) +},{"./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", + "Alighieri", + "Amedeo", + "Amos", + "Anselmo", + "Antonino", + "Arcibaldo", + "Armando", + "Artes", + "Audenico", + "Ausonio", + "Bacchisio", + "Battista", + "Bernardo", + "Boris", + "Caio", + "Carlo", + "Cecco", + "Cirino", + "Cleros", + "Costantino", + "Damiano", + "Danny", + "Davide", + "Demian", + "Dimitri", + "Domingo", + "Dylan", + "Edilio", + "Egidio", + "Elio", + "Emanuel", + "Enrico", + "Ercole", + "Ermes", + "Ethan", + "Eusebio", + "Evangelista", + "Fabiano", + "Ferdinando", + "Fiorentino", + "Flavio", + "Fulvio", + "Gabriele", + "Gastone", + "Germano", + "Giacinto", + "Gianantonio", + "Gianleonardo", + "Gianmarco", + "Gianriccardo", + "Gioacchino", + "Giordano", + "Giuliano", + "Graziano", + "Guido", + "Harry", + "Iacopo", + "Ilario", + "Ione", + "Italo", + "Jack", + "Jari", + "Joey", + "Joseph", + "Kai", + "Kociss", + "Laerte", + "Lauro", + "Leonardo", + "Liborio", + "Lorenzo", + "Ludovico", + "Maggiore", + "Manuele", + "Mariano", + "Marvin", + "Matteo", + "Mauro", + "Michael", + "Mirco", + "Modesto", + "Muzio", + "Nabil", + "Nathan", + "Nick", + "Noah", + "Odino", + "Olo", + "Oreste", + "Osea", + "Pablo", + "Patrizio", + "Piererminio", + "Pierfrancesco", + "Piersilvio", + "Priamo", + "Quarto", + "Quirino", + "Radames", + "Raniero", + "Renato", + "Rocco", + "Romeo", + "Rosalino", + "Rudy", + "Sabatino", + "Samuel", + "Santo", + "Sebastian", + "Serse", + "Silvano", + "Sirio", + "Tancredi", + "Terzo", + "Timoteo", + "Tolomeo", + "Trevis", + "Ubaldo", + "Ulrico", + "Valdo", + "Neri", + "Vinicio", + "Walter", + "Xavier", + "Yago", + "Zaccaria", + "Abramo", + "Adriano", + "Alan", + "Albino", + "Alessio", + "Alighiero", + "Amerigo", + "Anastasio", + "Antimo", + "Antonio", + "Arduino", + "Aroldo", + "Arturo", + "Augusto", + "Avide", + "Baldassarre", + "Bettino", + "Bortolo", + "Caligola", + "Carmelo", + "Celeste", + "Ciro", + "Costanzo", + "Dante", + "Danthon", + "Davis", + "Demis", + "Dindo", + "Domiziano", + "Edipo", + "Egisto", + "Eliziario", + "Emidio", + "Enzo", + "Eriberto", + "Erminio", + "Ettore", + "Eustachio", + "Fabio", + "Fernando", + "Fiorenzo", + "Folco", + "Furio", + "Gaetano", + "Gavino", + "Gerlando", + "Giacobbe", + "Giancarlo", + "Gianmaria", + "Giobbe", + "Giorgio", + "Giulio", + "Gregorio", + "Hector", + "Ian", + "Ippolito", + "Ivano", + "Jacopo", + "Jarno", + "Joannes", + "Joshua", + "Karim", + "Kris", + "Lamberto", + "Lazzaro", + "Leone", + "Lino", + "Loris", + "Luigi", + "Manfredi", + "Marco", + "Marino", + "Marzio", + "Mattia", + "Max", + "Michele", + "Mirko", + "Moreno", + "Nadir", + "Nazzareno", + "Nestore", + "Nico", + "Noel", + "Odone", + "Omar", + "Orfeo", + "Osvaldo", + "Pacifico", + "Pericle", + "Pietro", + "Primo", + "Quasimodo", + "Radio", + "Raoul", + "Renzo", + "Rodolfo", + "Romolo", + "Rosolino", + "Rufo", + "Sabino", + "Sandro", + "Sasha", + "Secondo", + "Sesto", + "Silverio", + "Siro", + "Tazio", + "Teseo", + "Timothy", + "Tommaso", + "Tristano", + "Umberto", + "Ariel", + "Artemide", + "Assia", + "Azue", + "Benedetta", + "Bibiana", + "Brigitta", + "Carmela", + "Cassiopea", + "Cesidia", + "Cira", + "Clea", + "Cleopatra", + "Clodovea", + "Concetta", + "Cosetta", + "Cristyn", + "Damiana", + "Danuta", + "Deborah", + "Demi", + "Diamante", + "Diana", + "Donatella", + "Doriana", + "Edvige", + "Elda", + "Elga", + "Elsa", + "Emilia", + "Enrica", + "Erminia", + "Eufemia", + "Evita", + "Fatima", + "Felicia", + "Filomena", + "Flaviana", + "Fortunata", + "Gelsomina", + "Genziana", + "Giacinta", + "Gilda", + "Giovanna", + "Giulietta", + "Grazia", + "Guendalina", + "Helga", + "Ileana", + "Ingrid", + "Irene", + "Isabel", + "Isira", + "Ivonne", + "Jelena", + "Jole", + "Claudia", + "Kayla", + "Kristel", + "Laura", + "Lucia", + "Lia", + "Lidia", + "Lisa", + "Loredana", + "Loretta", + "Luce", + "Lucrezia", + "Luna", + "Maika", + "Marcella", + "Maria", + "Mariagiulia", + "Marianita", + "Mariapia", + "Marieva", + "Marina", + "Maristella", + "Maruska", + "Matilde", + "Mecren", + "Mercedes", + "Mietta", + "Miriana", + "Miriam", + "Monia", + "Morgana", + "Naomi", + "Nayade", + "Nicoletta", + "Ninfa", + "Noemi", + "Nunzia", + "Olimpia", + "Oretta", + "Ortensia", + "Penelope", + "Piccarda", + "Prisca", + "Rebecca", + "Rita", + "Rosalba", + "Rosaria", + "Rosita", + "Ruth", + "Samira", + "Sarita", + "Selvaggia", + "Shaira", + "Sibilla", + "Soriana", + "Thea", + "Tosca", + "Ursula", + "Vania", + "Vera", + "Vienna", + "Violante", + "Vitalba", + "Zelida" + ]; + +},{}],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":513,"./last_name":515,"./name":516,"./prefix":517,"./suffix":518}],515:[function(require,module,exports){ + module["exports"] = [ + "Amato", + "Barbieri", + "Barone", + "Basile", + "Battaglia", + "Bellini", + "Benedetti", + "Bernardi", + "Bianc", + "Bianchi", + "Bruno", + "Caputo", + "Carbon", + "Caruso", + "Cattaneo", + "Colombo", + "Cont", + "Conte", + "Coppola", + "Costa", + "Costantin", + "D'amico", + "D'angelo", + "Damico", + "De Angelis", + "De luca", + "De rosa", + "De Santis", + "Donati", + "Esposito", + "Fabbri", + "Farin", + "Ferrara", + "Ferrari", + "Ferraro", + "Ferretti", + "Ferri", + "Fior", + "Fontana", + "Galli", + "Gallo", + "Gatti", + "Gentile", + "Giordano", + "Giuliani", + "Grassi", + "Grasso", + "Greco", + "Guerra", + "Leone", + "Lombardi", + "Lombardo", + "Longo", + "Mancini", + "Marchetti", + "Marian", + "Marini", + "Marino", + "Martinelli", + "Martini", + "Martino", + "Mazza", + "Messina", + "Milani", + "Montanari", + "Monti", + "Morelli", + "Moretti", + "Negri", + "Neri", + "Orlando", + "Pagano", + "Palmieri", + "Palumbo", + "Parisi", + "Pellegrini", + "Pellegrino", + "Piras", + "Ricci", + "Rinaldi", + "Riva", + "Rizzi", + "Rizzo", + "Romano", + "Ross", + "Rossetti", + "Ruggiero", + "Russo", + "Sala", + "Sanna", + "Santoro", + "Sartori", + "Serr", + "Silvestri", + "Sorrentino", + "Testa", + "Valentini", + "Villa", + "Vitale", + "Vitali" + ]; + +},{}],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." + ]; + +},{}],518:[function(require,module,exports){ + module["exports"] = []; + +},{}],519:[function(require,module,exports){ + module["exports"] = [ + "+## ### ## ## ####", + "+## ## #######", + "+## ## ########", + "+## ### #######", + "+## ### ########", + "+## #### #######", + "+## #### ########", + "0## ### ####", + "+39 0## ### ###", + "3## ### ###", + "+39 3## ### ###" + ]; + +},{}],520:[function(require,module,exports){ + arguments[4][47][0].apply(exports,arguments) +},{"./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}" + ]; + +},{}],522:[function(require,module,exports){ + module["exports"] = [ + "北", + "東", + "西", + "南", + "新", + "湖", + "港" + ]; + +},{}],523:[function(require,module,exports){ + 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":521,"./city_prefix":522,"./city_suffix":523,"./postcode":525,"./state":526,"./state_abbr":527,"./street_name":528}],525:[function(require,module,exports){ + module["exports"] = [ + "###-####" + ]; + +},{}],526:[function(require,module,exports){ + module["exports"] = [ + "北海道", + "青森県", + "岩手県", + "宮城県", + "秋田県", + "山形県", + "福島県", + "茨城県", + "栃木県", + "群馬県", + "埼玉県", + "千葉県", + "東京都", + "神奈川県", + "新潟県", + "富山県", + "石川県", + "福井県", + "山梨県", + "長野県", + "岐阜県", + "静岡県", + "愛知県", + "三重県", + "滋賀県", + "京都府", + "大阪府", + "兵庫県", + "奈良県", + "和歌山県", + "鳥取県", + "島根県", + "岡山県", + "広島県", + "山口県", + "徳島県", + "香川県", + "愛媛県", + "高知県", + "福岡県", + "佐賀県", + "長崎県", + "熊本県", + "大分県", + "宮崎県", + "鹿児島県", + "沖縄県" + ]; + +},{}],527:[function(require,module,exports){ + module["exports"] = [ + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25", + "26", + "27", + "28", + "29", + "30", + "31", + "32", + "33", + "34", + "35", + "36", + "37", + "38", + "39", + "40", + "41", + "42", + "43", + "44", + "45", + "46", + "47" + ]; + +},{}],528:[function(require,module,exports){ + module["exports"] = [ + "#{Name.first_name}#{street_suffix}", + "#{Name.last_name}#{street_suffix}" + ]; + +},{}],529:[function(require,module,exports){ + module["exports"] = [ + "090-####-####", + "080-####-####", + "070-####-####" + ]; + +},{}],530:[function(require,module,exports){ + arguments[4][29][0].apply(exports,arguments) +},{"./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":524,"./cell_phone":530,"./name":533,"./phone_number":537}],532:[function(require,module,exports){ + 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":532,"./last_name":534,"./name":535}],534:[function(require,module,exports){ + module["exports"] = [ + "佐藤", + "鈴木", + "高橋", + "田中", + "渡辺", + "伊藤", + "山本", + "中村", + "小林", + "加藤", + "吉田", + "山田", + "佐々木", + "山口", + "斎藤", + "松本", + "井上", + "木村", + "林", + "清水" + ]; + +},{}],535:[function(require,module,exports){ + module["exports"] = [ + "#{last_name} #{first_name}" + ]; + +},{}],536:[function(require,module,exports){ + module["exports"] = [ + "0####-#-####", + "0###-##-####", + "0##-###-####", + "0#-####-####" + ]; + +},{}],537:[function(require,module,exports){ + arguments[4][47][0].apply(exports,arguments) +},{"./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}" + ]; + +},{}],539:[function(require,module,exports){ + module["exports"] = [ + "강릉", + "양양", + "인제", + "광주", + "구리", + "부천", + "밀양", + "통영", + "창원", + "거창", + "고성", + "양산", + "김천", + "구미", + "영주", + "광산", + "남", + "북", + "고창", + "군산", + "남원", + "동작", + "마포", + "송파", + "용산", + "부평", + "강화", + "수성" + ]; + +},{}],540:[function(require,module,exports){ + 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"); + address.city_suffix = require("./city_suffix"); + address.city_name = require("./city_name"); + address.city = require("./city"); + address.street_root = require("./street_root"); + address.street_suffix = require("./street_suffix"); + address.street_name = require("./street_name"); + +},{"./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"] = [ + "###-###" + ]; + +},{}],543:[function(require,module,exports){ + 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}" + ]; + +},{}],546:[function(require,module,exports){ + module["exports"] = [ + "상계", + "화곡", + "신정", + "목", + "잠실", + "면목", + "주안", + "안양", + "중", + "정왕", + "구로", + "신월", + "연산", + "부평", + "창", + "만수", + "중계", + "검단", + "시흥", + "상도", + "방배", + "장유", + "상", + "광명", + "신길", + "행신", + "대명", + "동탄" + ]; + +},{}],547:[function(require,module,exports){ + 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":549,"./prefix":550,"./suffix":551}],549:[function(require,module,exports){ + module["exports"] = [ + "#{prefix} #{Name.first_name}", + "#{Name.first_name} #{suffix}" + ]; + +},{}],550:[function(require,module,exports){ + module["exports"] = [ + "주식회사", + "한국" + ]; + +},{}],551:[function(require,module,exports){ + 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":541,"./company":548,"./internet":555,"./lorem":556,"./name":559,"./phone_number":563}],553:[function(require,module,exports){ + module["exports"] = [ + "co.kr", + "com", + "biz", + "info", + "ne.kr", + "net", + "or.kr", + "org" + ]; + +},{}],554:[function(require,module,exports){ + module["exports"] = [ + "gmail.com", + "yahoo.co.kr", + "hanmail.net", + "naver.com" + ]; + +},{}],555:[function(require,module,exports){ + arguments[4][37][0].apply(exports,arguments) +},{"./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":557,"/Users/a/dev/faker.js/lib/locales/de/lorem/index.js":38}],557:[function(require,module,exports){ + module["exports"] = [ + "국가는", + "법률이", + "정하는", + "바에", + "의하여", + "재외국민을", + "보호할", + "의무를", + "진다.", + "모든", + "국민은", + "신체의", + "자유를", + "가진다.", + "국가는", + "전통문화의", + "계승·발전과", + "민족문화의", + "창달에", + "노력하여야", + "한다.", + "통신·방송의", + "시설기준과", + "신문의", + "기능을", + "보장하기", + "위하여", + "필요한", + "사항은", + "법률로", + "정한다.", + "헌법에", + "의하여", + "체결·공포된", + "조약과", + "일반적으로", + "승인된", + "국제법규는", + "국내법과", + "같은", + "효력을", + "가진다.", + "다만,", + "현행범인인", + "경우와", + "장기", + "3년", + "이상의", + "형에", + "해당하는", + "죄를", + "범하고", + "도피", + "또는", + "증거인멸의", + "염려가", + "있을", + "때에는", + "사후에", + "영장을", + "청구할", + "수", + "있다.", + "저작자·발명가·과학기술자와", + "예술가의", + "권리는", + "법률로써", + "보호한다.", + "형사피고인은", + "유죄의", + "판결이", + "확정될", + "때까지는", + "무죄로", + "추정된다.", + "모든", + "국민은", + "행위시의", + "법률에", + "의하여", + "범죄를", + "구성하지", + "아니하는", + "행위로", + "소추되지", + "아니하며,", + "동일한", + "범죄에", + "대하여", + "거듭", + "처벌받지", + "아니한다.", + "국가는", + "평생교육을", + "진흥하여야", + "한다.", + "모든", + "국민은", + "사생활의", + "비밀과", + "자유를", + "침해받지", + "아니한다.", + "의무교육은", + "무상으로", + "한다.", + "저작자·발명가·과학기술자와", + "예술가의", + "권리는", + "법률로써", + "보호한다.", + "국가는", + "모성의", + "보호를", + "위하여", + "노력하여야", + "한다.", + "헌법에", + "의하여", + "체결·공포된", + "조약과", + "일반적으로", + "승인된", + "국제법규는", + "국내법과", + "같은", + "효력을", + "가진다." + ]; + +},{}],558:[function(require,module,exports){ + 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"] = [ + "김", + "이", + "박", + "최", + "정", + "강", + "조", + "윤", + "장", + "임", + "오", + "한", + "신", + "서", + "권", + "황", + "안", + "송", + "류", + "홍" + ]; + +},{}],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##-####-####" + ]; + +},{}],563:[function(require,module,exports){ + arguments[4][47][0].apply(exports,arguments) +},{"./formats":562,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],564:[function(require,module,exports){ + module["exports"] = [ + "#", + "##" + ]; + +},{}],565:[function(require,module,exports){ + module["exports"] = [ + "#{city_root}#{city_suffix}" + ]; + +},{}],566:[function(require,module,exports){ + module["exports"] = [ + "Fet", + "Gjes", + "Høy", + "Inn", + "Fager", + "Lille", + "Lo", + "Mal", + "Nord", + "Nær", + "Sand", + "Sme", + "Stav", + "Stor", + "Tand", + "Ut", + "Vest" + ]; + +},{}],567:[function(require,module,exports){ + module["exports"] = [ + "berg", + "borg", + "by", + "bø", + "dal", + "eid", + "fjell", + "fjord", + "foss", + "grunn", + "hamn", + "havn", + "helle", + "mark", + "nes", + "odden", + "sand", + "sjøen", + "stad", + "strand", + "strøm", + "sund", + "vik", + "vær", + "våg", + "ø", + "øy", + "ås" + ]; + +},{}],568:[function(require,module,exports){ + module["exports"] = [ + "sgate", + "svei", + "s Gate", + "s Vei", + "gata", + "veien" + ]; + +},{}],569:[function(require,module,exports){ + module["exports"] = [ + "Norge" + ]; + +},{}],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"); + address.street_root = require("./street_root"); + address.street_suffix = require("./street_suffix"); + address.common_street_suffix = require("./common_street_suffix"); + address.building_number = require("./building_number"); + address.secondary_address = require("./secondary_address"); + address.postcode = require("./postcode"); + address.state = require("./state"); + address.city = require("./city"); + address.street_name = require("./street_name"); + address.street_address = require("./street_address"); + address.default_country = require("./default_country"); + +},{"./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###" + ]; + +},{}],572:[function(require,module,exports){ + module["exports"] = [ + "Leil. ###", + "Oppgang A", + "Oppgang B" + ]; + +},{}],573:[function(require,module,exports){ + module["exports"] = [ + "" + ]; + +},{}],574:[function(require,module,exports){ + module.exports=require(25) +},{"/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}" + ]; + +},{}],576:[function(require,module,exports){ + module["exports"] = [ + "Øvre", + "Nedre", + "Søndre", + "Gamle", + "Østre", + "Vestre" + ]; + +},{}],577:[function(require,module,exports){ + module["exports"] = [ + "Eike", + "Bjørke", + "Gran", + "Vass", + "Furu", + "Litj", + "Lille", + "Høy", + "Fosse", + "Elve", + "Ku", + "Konvall", + "Soldugg", + "Hestemyr", + "Granitt", + "Hegge", + "Rogne", + "Fiol", + "Sol", + "Ting", + "Malm", + "Klokker", + "Preste", + "Dam", + "Geiterygg", + "Bekke", + "Berg", + "Kirke", + "Kors", + "Bru", + "Blåveis", + "Torg", + "Sjø" + ]; + +},{}],578:[function(require,module,exports){ + module["exports"] = [ + "alléen", + "bakken", + "berget", + "bråten", + "eggen", + "engen", + "ekra", + "faret", + "flata", + "gata", + "gjerdet", + "grenda", + "gropa", + "hagen", + "haugen", + "havna", + "holtet", + "høgda", + "jordet", + "kollen", + "kroken", + "lia", + "lunden", + "lyngen", + "løkka", + "marka", + "moen", + "myra", + "plassen", + "ringen", + "roa", + "røa", + "skogen", + "skrenten", + "spranget", + "stien", + "stranda", + "stubben", + "stykket", + "svingen", + "tjernet", + "toppen", + "tunet", + "vollen", + "vika", + "åsen" + ]; + +},{}],579:[function(require,module,exports){ + arguments[4][83][0].apply(exports,arguments) +},{"./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}" + ]; + +},{}],581:[function(require,module,exports){ + module["exports"] = [ + "Gruppen", + "AS", + "ASA", + "BA", + "RFH", + "og Sønner" + ]; + +},{}],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":570,"./company":579,"./internet":584,"./name":587,"./phone_number":594}],583:[function(require,module,exports){ + module["exports"] = [ + "no", + "com", + "net", + "org" + ]; + +},{}],584:[function(require,module,exports){ + arguments[4][88][0].apply(exports,arguments) +},{"./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", + "Julie", + "Nora", + "Emilie", + "Ingrid", + "Hanna", + "Maria", + "Sofie", + "Anna", + "Malin", + "Amalie", + "Vilde", + "Frida", + "Andrea", + "Tuva", + "Victoria", + "Mia", + "Karoline", + "Mathilde", + "Martine", + "Linnea", + "Marte", + "Hedda", + "Marie", + "Helene", + "Silje", + "Leah", + "Maja", + "Elise", + "Oda", + "Kristine", + "Aurora", + "Kaja", + "Camilla", + "Mari", + "Maren", + "Mina", + "Selma", + "Jenny", + "Celine", + "Eline", + "Sunniva", + "Natalie", + "Tiril", + "Synne", + "Sandra", + "Madeleine" + ]; + +},{}],586:[function(require,module,exports){ + module["exports"] = [ + "Emma", + "Sara", + "Thea", + "Ida", + "Julie", + "Nora", + "Emilie", + "Ingrid", + "Hanna", + "Maria", + "Sofie", + "Anna", + "Malin", + "Amalie", + "Vilde", + "Frida", + "Andrea", + "Tuva", + "Victoria", + "Mia", + "Karoline", + "Mathilde", + "Martine", + "Linnea", + "Marte", + "Hedda", + "Marie", + "Helene", + "Silje", + "Leah", + "Maja", + "Elise", + "Oda", + "Kristine", + "Aurora", + "Kaja", + "Camilla", + "Mari", + "Maren", + "Mina", + "Selma", + "Jenny", + "Celine", + "Eline", + "Sunniva", + "Natalie", + "Tiril", + "Synne", + "Sandra", + "Madeleine", + "Markus", + "Mathias", + "Kristian", + "Jonas", + "Andreas", + "Alexander", + "Martin", + "Sander", + "Daniel", + "Magnus", + "Henrik", + "Tobias", + "Kristoffer", + "Emil", + "Adrian", + "Sebastian", + "Marius", + "Elias", + "Fredrik", + "Thomas", + "Sondre", + "Benjamin", + "Jakob", + "Oliver", + "Lucas", + "Oskar", + "Nikolai", + "Filip", + "Mats", + "William", + "Erik", + "Simen", + "Ole", + "Eirik", + "Isak", + "Kasper", + "Noah", + "Lars", + "Joakim", + "Johannes", + "Håkon", + "Sindre", + "Jørgen", + "Herman", + "Anders", + "Jonathan", + "Even", + "Theodor", + "Mikkel", + "Aksel" + ]; + +},{}],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":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", + "Larsen", + "Olsen", + "Solberg", + "Andresen", + "Pedersen", + "Nilsen", + "Berg", + "Halvorsen", + "Karlsen", + "Svendsen", + "Jensen", + "Haugen", + "Martinsen", + "Eriksen", + "Sørensen", + "Johnsen", + "Myhrer", + "Johannessen", + "Nielsen", + "Hagen", + "Pettersen", + "Bakke", + "Skuterud", + "Løken", + "Gundersen", + "Strand", + "Jørgensen", + "Kvarme", + "Røed", + "Sæther", + "Stensrud", + "Moe", + "Kristoffersen", + "Jakobsen", + "Holm", + "Aas", + "Lie", + "Moen", + "Andreassen", + "Vedvik", + "Nguyen", + "Jacobsen", + "Torgersen", + "Ruud", + "Krogh", + "Christiansen", + "Bjerke", + "Aalerud", + "Borge", + "Sørlie", + "Berge", + "Østli", + "Ødegård", + "Torp", + "Henriksen", + "Haukelidsæter", + "Fjeld", + "Danielsen", + "Aasen", + "Fredriksen", + "Dahl", + "Berntsen", + "Arnesen", + "Wold", + "Thoresen", + "Solheim", + "Skoglund", + "Bakken", + "Amundsen", + "Solli", + "Smogeli", + "Kristensen", + "Glosli", + "Fossum", + "Evensen", + "Eide", + "Carlsen", + "Østby", + "Vegge", + "Tangen", + "Smedsrud", + "Olstad", + "Lunde", + "Kleven", + "Huseby", + "Bjørnstad", + "Ryan", + "Rasmussen", + "Nygård", + "Nordskaug", + "Nordby", + "Mathisen", + "Hopland", + "Gran", + "Finstad", + "Edvardsen" + ]; + +},{}],589:[function(require,module,exports){ + module["exports"] = [ + "Markus", + "Mathias", + "Kristian", + "Jonas", + "Andreas", + "Alexander", + "Martin", + "Sander", + "Daniel", + "Magnus", + "Henrik", + "Tobias", + "Kristoffer", + "Emil", + "Adrian", + "Sebastian", + "Marius", + "Elias", + "Fredrik", + "Thomas", + "Sondre", + "Benjamin", + "Jakob", + "Oliver", + "Lucas", + "Oskar", + "Nikolai", + "Filip", + "Mats", + "William", + "Erik", + "Simen", + "Ole", + "Eirik", + "Isak", + "Kasper", + "Noah", + "Lars", + "Joakim", + "Johannes", + "Håkon", + "Sindre", + "Jørgen", + "Herman", + "Anders", + "Jonathan", + "Even", + "Theodor", + "Mikkel", + "Aksel" + ]; + +},{}],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}" + ]; + +},{}],591:[function(require,module,exports){ + module["exports"] = [ + "Dr.", + "Prof." + ]; + +},{}],592:[function(require,module,exports){ + module["exports"] = [ + "Jr.", + "Sr.", + "I", + "II", + "III", + "IV", + "V" + ]; + +},{}],593:[function(require,module,exports){ + module["exports"] = [ + "########", + "## ## ## ##", + "### ## ###", + "+47 ## ## ## ##" + ]; + +},{}],594:[function(require,module,exports){ + arguments[4][47][0].apply(exports,arguments) +},{"./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", + "Butwal", + "Damak", + "Dharan", + "Gaur", + "Gorkha", + "Hetauda", + "Itahari", + "Janakpur", + "Kathmandu", + "Lahan", + "Nepalgunj", + "Pokhara" + ]; + +},{}],596:[function(require,module,exports){ + module["exports"] = [ + "Nepal" + ]; + +},{}],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":595,"./default_country":596,"./postcode":598,"./state":599}],598:[function(require,module,exports){ + module["exports"] = [ + 0 + ]; + +},{}],599:[function(require,module,exports){ + module["exports"] = [ + "Baglung", + "Banke", + "Bara", + "Bardiya", + "Bhaktapur", + "Bhojupu", + "Chitwan", + "Dailekh", + "Dang", + "Dhading", + "Dhankuta", + "Dhanusa", + "Dolakha", + "Dolpha", + "Gorkha", + "Gulmi", + "Humla", + "Ilam", + "Jajarkot", + "Jhapa", + "Jumla", + "Kabhrepalanchok", + "Kalikot", + "Kapilvastu", + "Kaski", + "Kathmandu", + "Lalitpur", + "Lamjung", + "Manang", + "Mohottari", + "Morang", + "Mugu", + "Mustang", + "Myagdi", + "Nawalparasi", + "Nuwakot", + "Palpa", + "Parbat", + "Parsa", + "Ramechhap", + "Rauswa", + "Rautahat", + "Rolpa", + "Rupandehi", + "Sankhuwasabha", + "Sarlahi", + "Sindhuli", + "Sindhupalchok", + "Sunsari", + "Surket", + "Syangja", + "Tanahu", + "Terhathum" + ]; + +},{}],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" + ]; + +},{}],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":597,"./company":600,"./internet":605,"./name":607,"./phone_number":610}],603:[function(require,module,exports){ + module["exports"] = [ + "np", + "com", + "info", + "net", + "org" + ]; + +},{}],604:[function(require,module,exports){ + module["exports"] = [ + "worldlink.com.np", + "gmail.com", + "yahoo.com", + "hotmail.com" + ]; + +},{}],605:[function(require,module,exports){ + arguments[4][37][0].apply(exports,arguments) +},{"./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", + "Amrit", + "Arijit", + "Ashmi", + "Asmita", + "Bibek", + "Bijay", + "Bikash", + "Bina", + "Bishal", + "Bishnu", + "Buddha", + "Deepika", + "Dipendra", + "Gagan", + "Ganesh", + "Khem", + "Krishna", + "Laxmi", + "Manisha", + "Nabin", + "Nikita", + "Niraj", + "Nischal", + "Padam", + "Pooja", + "Prabin", + "Prakash", + "Prashant", + "Prem", + "Purna", + "Rajendra", + "Rajina", + "Raju", + "Rakesh", + "Ranjan", + "Ratna", + "Sagar", + "Sandeep", + "Sanjay", + "Santosh", + "Sarita", + "Shilpa", + "Shirisha", + "Shristi", + "Siddhartha", + "Subash", + "Sumeet", + "Sunita", + "Suraj", + "Susan", + "Sushant" + ]; + +},{}],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", + "Bastola", + "Basynat", + "Bhandari", + "Bhattarai", + "Chettri", + "Devkota", + "Dhakal", + "Dongol", + "Ghale", + "Gurung", + "Gyawali", + "Hamal", + "Jung", + "KC", + "Kafle", + "Karki", + "Khadka", + "Koirala", + "Lama", + "Limbu", + "Magar", + "Maharjan", + "Niroula", + "Pandey", + "Pradhan", + "Rana", + "Raut", + "Sai", + "Shai", + "Shakya", + "Sherpa", + "Shrestha", + "Subedi", + "Tamang", + "Thapa" + ]; + +},{}],609:[function(require,module,exports){ + module["exports"] = [ + "##-#######", + "+977-#-#######", + "+977########" + ]; + +},{}],610:[function(require,module,exports){ + arguments[4][47][0].apply(exports,arguments) +},{"./formats":609,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],611:[function(require,module,exports){ + module["exports"] = [ + "#", + "##", + "###", + "###a", + "###b", + "###c", + "### I", + "### II", + "### III" + ]; + +},{}],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}" + ]; + +},{}],613:[function(require,module,exports){ + module["exports"] = [ + "Noord", + "Oost", + "West", + "Zuid", + "Nieuw", + "Oud" + ]; + +},{}],614:[function(require,module,exports){ + module["exports"] = [ + "dam", + "berg", + " aan de Rijn", + " aan de IJssel", + "swaerd", + "endrecht", + "recht", + "ambacht", + "enmaes", + "wijk", + "sland", + "stroom", + "sluus", + "dijk", + "dorp", + "burg", + "veld", + "sluis", + "koop", + "lek", + "hout", + "geest", + "kerk", + "woude", + "hoven", + "hoten", + "ingen", + "plas", + "meer" + ]; + +},{}],615:[function(require,module,exports){ + module["exports"] = [ + "Afghanistan", + "Akrotiri", + "Albanië", + "Algerije", + "Amerikaanse Maagdeneilanden", + "Amerikaans-Samoa", + "Andorra", + "Angola", + "Anguilla", + "Antarctica", + "Antigua en Barbuda", + "Arctic Ocean", + "Argentinië", + "Armenië", + "Aruba", + "Ashmore and Cartier Islands", + "Atlantic Ocean", + "Australië", + "Azerbeidzjan", + "Bahama's", + "Bahrein", + "Bangladesh", + "Barbados", + "Belarus", + "België", + "Belize", + "Benin", + "Bermuda", + "Bhutan", + "Bolivië", + "Bosnië-Herzegovina", + "Botswana", + "Bouvet Island", + "Brazilië", + "British Indian Ocean Territory", + "Britse Maagdeneilanden", + "Brunei", + "Bulgarije", + "Burkina Faso", + "Burundi", + "Cambodja", + "Canada", + "Caymaneilanden", + "Centraal-Afrikaanse Republiek", + "Chili", + "China", + "Christmas Island", + "Clipperton Island", + "Cocos (Keeling) Islands", + "Colombia", + "Comoren (Unie)", + "Congo (Democratische Republiek)", + "Congo (Volksrepubliek)", + "Cook", + "Coral Sea Islands", + "Costa Rica", + "Cuba", + "Cyprus", + "Denemarken", + "Dhekelia", + "Djibouti", + "Dominica", + "Dominicaanse Republiek", + "Duitsland", + "Ecuador", + "Egypte", + "El Salvador", + "Equatoriaal-Guinea", + "Eritrea", + "Estland", + "Ethiopië", + "European Union", + "Falkland", + "Faroe Islands", + "Fiji", + "Filipijnen", + "Finland", + "Frankrijk", + "Frans-Polynesië", + "French Southern and Antarctic Lands", + "Gabon", + "Gambia", + "Gaza Strip", + "Georgië", + "Ghana", + "Gibraltar", + "Grenada", + "Griekenland", + "Groenland", + "Guam", + "Guatemala", + "Guernsey", + "Guinea", + "Guinee-Bissau", + "Guyana", + "Haïti", + "Heard Island and McDonald Islands", + "Heilige Stoel", + "Honduras", + "Hongarije", + "Hongkong", + "Ierland", + "IJsland", + "India", + "Indian Ocean", + "Indonesië", + "Irak", + "Iran", + "Isle of Man", + "Israël", + "Italië", + "Ivoorkust", + "Jamaica", + "Jan Mayen", + "Japan", + "Jemen", + "Jersey", + "Jordanië", + "Kaapverdië", + "Kameroen", + "Kazachstan", + "Kenia", + "Kirgizstan", + "Kiribati", + "Koeweit", + "Kroatië", + "Laos", + "Lesotho", + "Letland", + "Libanon", + "Liberia", + "Libië", + "Liechtenstein", + "Litouwen", + "Luxemburg", + "Macao", + "Macedonië", + "Madagaskar", + "Malawi", + "Maldiven", + "Maleisië", + "Mali", + "Malta", + "Marokko", + "Marshall Islands", + "Mauritanië", + "Mauritius", + "Mayotte", + "Mexico", + "Micronesia, Federated States of", + "Moldavië", + "Monaco", + "Mongolië", + "Montenegro", + "Montserrat", + "Mozambique", + "Myanmar", + "Namibië", + "Nauru", + "Navassa Island", + "Nederland", + "Nederlandse Antillen", + "Nepal", + "Ngwane", + "Nicaragua", + "Nieuw-Caledonië", + "Nieuw-Zeeland", + "Niger", + "Nigeria", + "Niue", + "Noordelijke Marianen", + "Noord-Korea", + "Noorwegen", + "Norfolk Island", + "Oekraïne", + "Oezbekistan", + "Oman", + "Oostenrijk", + "Pacific Ocean", + "Pakistan", + "Palau", + "Panama", + "Papoea-Nieuw-Guinea", + "Paracel Islands", + "Paraguay", + "Peru", + "Pitcairn", + "Polen", + "Portugal", + "Puerto Rico", + "Qatar", + "Roemenië", + "Rusland", + "Rwanda", + "Saint Helena", + "Saint Lucia", + "Saint Vincent en de Grenadines", + "Saint-Pierre en Miquelon", + "Salomon", + "Samoa", + "San Marino", + "São Tomé en Principe", + "Saudi-Arabië", + "Senegal", + "Servië", + "Seychellen", + "Sierra Leone", + "Singapore", + "Sint-Kitts en Nevis", + "Slovenië", + "Slowakije", + "Soedan", + "Somalië", + "South Georgia and the South Sandwich Islands", + "Southern Ocean", + "Spanje", + "Spratly Islands", + "Sri Lanka", + "Suriname", + "Svalbard", + "Syrië", + "Tadzjikistan", + "Taiwan", + "Tanzania", + "Thailand", + "Timor Leste", + "Togo", + "Tokelau", + "Tonga", + "Trinidad en Tobago", + "Tsjaad", + "Tsjechië", + "Tunesië", + "Turkije", + "Turkmenistan", + "Turks-en Caicoseilanden", + "Tuvalu", + "Uganda", + "Uruguay", + "Vanuatu", + "Venezuela", + "Verenigd Koninkrijk", + "Verenigde Arabische Emiraten", + "Verenigde Staten van Amerika", + "Vietnam", + "Wake Island", + "Wallis en Futuna", + "Wereld", + "West Bank", + "Westelijke Sahara", + "Zambia", + "Zimbabwe", + "Zuid-Afrika", + "Zuid-Korea", + "Zweden", + "Zwitserland" + ]; + +},{}],616:[function(require,module,exports){ + module["exports"] = [ + "Nederland" + ]; + +},{}],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"); + address.country = require("./country"); + address.building_number = require("./building_number"); + address.street_suffix = require("./street_suffix"); + address.secondary_address = require("./secondary_address"); + address.street_name = require("./street_name"); + address.street_address = require("./street_address"); + address.postcode = require("./postcode"); + address.state = require("./state"); + address.default_country = require("./default_country"); + +},{"./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"] = [ + "#### ??" + ]; + +},{}],619:[function(require,module,exports){ + module["exports"] = [ + "1 hoog", + "2 hoog", + "3 hoog" + ]; + +},{}],620:[function(require,module,exports){ + module["exports"] = [ + "Noord-Holland", + "Zuid-Holland", + "Utrecht", + "Zeeland", + "Overijssel", + "Gelderland", + "Drenthe", + "Friesland", + "Groningen", + "Noord-Brabant", + "Limburg", + "Flevoland" + ]; + +},{}],621:[function(require,module,exports){ + module.exports=require(25) +},{"/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" + ]; + +},{}],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" + ]; + +},{}],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":617,"./company":624,"./internet":629,"./lorem":630,"./name":634,"./phone_number":641}],627:[function(require,module,exports){ + module["exports"] = [ + "nl", + "com", + "net", + "org" + ]; + +},{}],628:[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){ + 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(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}],633:[function(require,module,exports){ + module["exports"] = [ + "Amber", + "Anna", + "Anne", + "Anouk", + "Bas", + "Bram", + "Britt", + "Daan", + "Emma", + "Eva", + "Femke", + "Finn", + "Fleur", + "Iris", + "Isa", + "Jan", + "Jasper", + "Jayden", + "Jesse", + "Johannes", + "Julia", + "Julian", + "Kevin", + "Lars", + "Lieke", + "Lisa", + "Lotte", + "Lucas", + "Luuk", + "Maud", + "Max", + "Mike", + "Milan", + "Nick", + "Niels", + "Noa", + "Rick", + "Roos", + "Ruben", + "Sander", + "Sanne", + "Sem", + "Sophie", + "Stijn", + "Sven", + "Thijs", + "Thijs", + "Thomas", + "Tim", + "Tom" + ]; + +},{}],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":633,"./last_name":635,"./name":636,"./prefix":637,"./suffix":638,"./tussenvoegsel":639}],635:[function(require,module,exports){ + module["exports"] = [ + "Bakker", + "Beek", + "Berg", + "Boer", + "Bos", + "Bosch", + "Brink", + "Broek", + "Brouwer", + "Bruin", + "Dam", + "Dekker", + "Dijk", + "Dijkstra", + "Graaf", + "Groot", + "Haan", + "Hendriks", + "Heuvel", + "Hoek", + "Jacobs", + "Jansen", + "Janssen", + "Jong", + "Klein", + "Kok", + "Koning", + "Koster", + "Leeuwen", + "Linden", + "Maas", + "Meer", + "Meijer", + "Mulder", + "Peters", + "Ruiter", + "Schouten", + "Smit", + "Smits", + "Stichting", + "Veen", + "Ven", + "Vermeulen", + "Visser", + "Vliet", + "Vos", + "Vries", + "Wal", + "Willems", + "Wit" + ]; + +},{}],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}" + ]; + +},{}],637:[function(require,module,exports){ + module["exports"] = [ + "Dhr.", + "Mevr. Dr.", + "Bsc", + "Msc", + "Prof." + ]; + +},{}],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" + ]; + +},{}],640:[function(require,module,exports){ + module["exports"] = [ + "(####) ######", + "##########", + "06########", + "06 #### ####" + ]; + +},{}],641:[function(require,module,exports){ + arguments[4][47][0].apply(exports,arguments) +},{"./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}],644:[function(require,module,exports){ + module["exports"] = [ + "Aleksandrów Kujawski", + "Aleksandrów Łódzki", + "Alwernia", + "Andrychów", + "Annopol", + "Augustów", + "Babimost", + "Baborów", + "Baranów Sandomierski", + "Barcin", + "Barczewo", + "Bardo", + "Barlinek", + "Bartoszyce", + "Barwice", + "Bełchatów", + "Bełżyce", + "Będzin", + "Biała", + "Biała Piska", + "Biała Podlaska", + "Biała Rawska", + "Białobrzegi", + "Białogard", + "Biały Bór", + "Białystok", + "Biecz", + "Bielawa", + "Bielsk Podlaski", + "Bielsko-Biała", + "Bieruń", + "Bierutów", + "Bieżuń", + "Biłgoraj", + "Biskupiec", + "Bisztynek", + "Blachownia", + "Błaszki", + "Błażowa", + "Błonie", + "Bobolice", + "Bobowa", + "Bochnia", + "Bodzentyn", + "Bogatynia", + "Boguchwała", + "Boguszów-Gorce", + "Bojanowo", + "Bolesławiec", + "Bolków", + "Borek Wielkopolski", + "Borne Sulinowo", + "Braniewo", + "Brańsk", + "Brodnica", + "Brok", + "Brusy", + "Brwinów", + "Brzeg", + "Brzeg Dolny", + "Brzesko", + "Brzeszcze", + "Brześć Kujawski", + "Brzeziny", + "Brzostek", + "Brzozów", + "Buk", + "Bukowno", + "Busko-Zdrój", + "Bychawa", + "Byczyna", + "Bydgoszcz", + "Bystrzyca Kłodzka", + "Bytom", + "Bytom Odrzański", + "Bytów", + "Cedynia", + "Chełm", + "Chełmek", + "Chełmno", + "Chełmża", + "Chęciny", + "Chmielnik", + "Chocianów", + "Chociwel", + "Chodecz", + "Chodzież", + "Chojna", + "Chojnice", + "Chojnów", + "Choroszcz", + "Chorzele", + "Chorzów", + "Choszczno", + "Chrzanów", + "Ciechanowiec", + "Ciechanów", + "Ciechocinek", + "Cieszanów", + "Cieszyn", + "Ciężkowice", + "Cybinka", + "Czaplinek", + "Czarna Białostocka", + "Czarna Woda", + "Czarne", + "Czarnków", + "Czchów", + "Czechowice-Dziedzice", + "Czeladź", + "Czempiń", + "Czerniejewo", + "Czersk", + "Czerwieńsk", + "Czerwionka-Leszczyny", + "Częstochowa", + "Człopa", + "Człuchów", + "Czyżew", + "Ćmielów", + "Daleszyce", + "Darłowo", + "Dąbie", + "Dąbrowa Białostocka", + "Dąbrowa Górnicza", + "Dąbrowa Tarnowska", + "Debrzno", + "Dębica", + "Dęblin", + "Dębno", + "Dobczyce", + "Dobiegniew", + "Dobra (powiat łobeski)", + "Dobra (powiat turecki)", + "Dobre Miasto", + "Dobrodzień", + "Dobrzany", + "Dobrzyń nad Wisłą", + "Dolsk", + "Drawno", + "Drawsko Pomorskie", + "Drezdenko", + "Drobin", + "Drohiczyn", + "Drzewica", + "Dukla", + "Duszniki-Zdrój", + "Dynów", + "Działdowo", + "Działoszyce", + "Działoszyn", + "Dzierzgoń", + "Dzierżoniów", + "Dziwnów", + "Elbląg", + "Ełk", + "Frampol", + "Frombork", + "Garwolin", + "Gąbin", + "Gdańsk", + "Gdynia", + "Giżycko", + "Glinojeck", + "Gliwice", + "Głogów", + "Głogów Małopolski", + "Głogówek", + "Głowno", + "Głubczyce", + "Głuchołazy", + "Głuszyca", + "Gniew", + "Gniewkowo", + "Gniezno", + "Gogolin", + "Golczewo", + "Goleniów", + "Golina", + "Golub-Dobrzyń", + "Gołańcz", + "Gołdap", + "Goniądz", + "Gorlice", + "Gorzów Śląski", + "Gorzów Wielkopolski", + "Gostynin", + "Gostyń", + "Gościno", + "Gozdnica", + "Góra", + "Góra Kalwaria", + "Górowo Iławeckie", + "Górzno", + "Grabów nad Prosną", + "Grajewo", + "Grodków", + "Grodzisk Mazowiecki", + "Grodzisk Wielkopolski", + "Grójec", + "Grudziądz", + "Grybów", + "Gryfice", + "Gryfino", + "Gryfów Śląski", + "Gubin", + "Hajnówka", + "Halinów", + "Hel", + "Hrubieszów", + "Iława", + "Iłowa", + "Iłża", + "Imielin", + "Inowrocław", + "Ińsko", + "Iwonicz-Zdrój", + "Izbica Kujawska", + "Jabłonowo Pomorskie", + "Janikowo", + "Janowiec Wielkopolski", + "Janów Lubelski", + "Jarocin", + "Jarosław", + "Jasień", + "Jasło", + "Jastarnia", + "Jastrowie", + "Jastrzębie-Zdrój", + "Jawor", + "Jaworzno", + "Jaworzyna Śląska", + "Jedlicze", + "Jedlina-Zdrój", + "Jedwabne", + "Jelcz-Laskowice", + "Jelenia Góra", + "Jeziorany", + "Jędrzejów", + "Jordanów", + "Józefów (powiat biłgorajski)", + "Józefów (powiat otwocki)", + "Jutrosin", + "Kalety", + "Kalisz", + "Kalisz Pomorski", + "Kalwaria Zebrzydowska", + "Kałuszyn", + "Kamienna Góra", + "Kamień Krajeński", + "Kamień Pomorski", + "Kamieńsk", + "Kańczuga", + "Karczew", + "Kargowa", + "Karlino", + "Karpacz", + "Kartuzy", + "Katowice", + "Kazimierz Dolny", + "Kazimierza Wielka", + "Kąty Wrocławskie", + "Kcynia", + "Kędzierzyn-Koźle", + "Kępice", + "Kępno", + "Kętrzyn", + "Kęty", + "Kielce", + "Kietrz", + "Kisielice", + "Kleczew", + "Kleszczele", + "Kluczbork", + "Kłecko", + "Kłobuck", + "Kłodawa", + "Kłodzko", + "Knurów", + "Knyszyn", + "Kobylin", + "Kobyłka", + "Kock", + "Kolbuszowa", + "Kolno", + "Kolonowskie", + "Koluszki", + "Kołaczyce", + "Koło", + "Kołobrzeg", + "Koniecpol", + "Konin", + "Konstancin-Jeziorna", + "Konstantynów Łódzki", + "Końskie", + "Koprzywnica", + "Korfantów", + "Koronowo", + "Korsze", + "Kosów Lacki", + "Kostrzyn", + "Kostrzyn nad Odrą", + "Koszalin", + "Kościan", + "Kościerzyna", + "Kowal", + "Kowalewo Pomorskie", + "Kowary", + "Koziegłowy", + "Kozienice", + "Koźmin Wielkopolski", + "Kożuchów", + "Kórnik", + "Krajenka", + "Kraków", + "Krapkowice", + "Krasnobród", + "Krasnystaw", + "Kraśnik", + "Krobia", + "Krosno", + "Krosno Odrzańskie", + "Krośniewice", + "Krotoszyn", + "Kruszwica", + "Krynica Morska", + "Krynica-Zdrój", + "Krynki", + "Krzanowice", + "Krzepice", + "Krzeszowice", + "Krzywiń", + "Krzyż Wielkopolski", + "Książ Wielkopolski", + "Kudowa-Zdrój", + "Kunów", + "Kutno", + "Kuźnia Raciborska", + "Kwidzyn", + "Lądek-Zdrój", + "Legionowo", + "Legnica", + "Lesko", + "Leszno", + "Leśna", + "Leśnica", + "Lewin Brzeski", + "Leżajsk", + "Lębork", + "Lędziny", + "Libiąż", + "Lidzbark", + "Lidzbark Warmiński", + "Limanowa", + "Lipiany", + "Lipno", + "Lipsk", + "Lipsko", + "Lubaczów", + "Lubań", + "Lubartów", + "Lubawa", + "Lubawka", + "Lubień Kujawski", + "Lubin", + "Lublin", + "Lubliniec", + "Lubniewice", + "Lubomierz", + "Luboń", + "Lubraniec", + "Lubsko", + "Lwówek", + "Lwówek Śląski", + "Łabiszyn", + "Łańcut", + "Łapy", + "Łasin", + "Łask", + "Łaskarzew", + "Łaszczów", + "Łaziska Górne", + "Łazy", + "Łeba", + "Łęczna", + "Łęczyca", + "Łęknica", + "Łobez", + "Łobżenica", + "Łochów", + "Łomianki", + "Łomża", + "Łosice", + "Łowicz", + "Łódź", + "Łuków", + "Maków Mazowiecki", + "Maków Podhalański", + "Malbork", + "Małogoszcz", + "Małomice", + "Margonin", + "Marki", + "Maszewo", + "Miasteczko Śląskie", + "Miastko", + "Michałowo", + "Miechów", + "Miejska Górka", + "Mielec", + "Mieroszów", + "Mieszkowice", + "Międzybórz", + "Międzychód", + "Międzylesie", + "Międzyrzec Podlaski", + "Międzyrzecz", + "Międzyzdroje", + "Mikołajki", + "Mikołów", + "Mikstat", + "Milanówek", + "Milicz", + "Miłakowo", + "Miłomłyn", + "Miłosław", + "Mińsk Mazowiecki", + "Mirosławiec", + "Mirsk", + "Mława", + "Młynary", + "Mogielnica", + "Mogilno", + "Mońki", + "Morąg", + "Mordy", + "Moryń", + "Mosina", + "Mrągowo", + "Mrocza", + "Mszana Dolna", + "Mszczonów", + "Murowana Goślina", + "Muszyna", + "Mysłowice", + "Myszków", + "Myszyniec", + "Myślenice", + "Myślibórz", + "Nakło nad Notecią", + "Nałęczów", + "Namysłów", + "Narol", + "Nasielsk", + "Nekla", + "Nidzica", + "Niemcza", + "Niemodlin", + "Niepołomice", + "Nieszawa", + "Nisko", + "Nowa Dęba", + "Nowa Ruda", + "Nowa Sarzyna", + "Nowa Sól", + "Nowe", + "Nowe Brzesko", + "Nowe Miasteczko", + "Nowe Miasto Lubawskie", + "Nowe Miasto nad Pilicą", + "Nowe Skalmierzyce", + "Nowe Warpno", + "Nowogard", + "Nowogrodziec", + "Nowogród", + "Nowogród Bobrzański", + "Nowy Dwór Gdański", + "Nowy Dwór Mazowiecki", + "Nowy Sącz", + "Nowy Staw", + "Nowy Targ", + "Nowy Tomyśl", + "Nowy Wiśnicz", + "Nysa", + "Oborniki", + "Oborniki Śląskie", + "Obrzycko", + "Odolanów", + "Ogrodzieniec", + "Okonek", + "Olecko", + "Olesno", + "Oleszyce", + "Oleśnica", + "Olkusz", + "Olsztyn", + "Olsztynek", + "Olszyna", + "Oława", + "Opalenica", + "Opatów", + "Opoczno", + "Opole", + "Opole Lubelskie", + "Orneta", + "Orzesze", + "Orzysz", + "Osieczna", + "Osiek", + "Ostrołęka", + "Ostroróg", + "Ostrowiec Świętokrzyski", + "Ostróda", + "Ostrów Lubelski", + "Ostrów Mazowiecka", + "Ostrów Wielkopolski", + "Ostrzeszów", + "Ośno Lubuskie", + "Oświęcim", + "Otmuchów", + "Otwock", + "Ozimek", + "Ozorków", + "Ożarów", + "Ożarów Mazowiecki", + "Pabianice", + "Paczków", + "Pajęczno", + "Pakość", + "Parczew", + "Pasłęk", + "Pasym", + "Pelplin", + "Pełczyce", + "Piaseczno", + "Piaski", + "Piastów", + "Piechowice", + "Piekary Śląskie", + "Pieniężno", + "Pieńsk", + "Pieszyce", + "Pilawa", + "Pilica", + "Pilzno", + "Piła", + "Piława Górna", + "Pińczów", + "Pionki", + "Piotrków Kujawski", + "Piotrków Trybunalski", + "Pisz", + "Piwniczna-Zdrój", + "Pleszew", + "Płock", + "Płońsk", + "Płoty", + "Pniewy", + "Pobiedziska", + "Poddębice", + "Podkowa Leśna", + "Pogorzela", + "Polanica-Zdrój", + "Polanów", + "Police", + "Polkowice", + "Połaniec", + "Połczyn-Zdrój", + "Poniatowa", + "Poniec", + "Poręba", + "Poznań", + "Prabuty", + "Praszka", + "Prochowice", + "Proszowice", + "Prószków", + "Pruchnik", + "Prudnik", + "Prusice", + "Pruszcz Gdański", + "Pruszków", + "Przasnysz", + "Przecław", + "Przedbórz", + "Przedecz", + "Przemków", + "Przemyśl", + "Przeworsk", + "Przysucha", + "Pszczyna", + "Pszów", + "Puck", + "Puławy", + "Pułtusk", + "Puszczykowo", + "Pyrzyce", + "Pyskowice", + "Pyzdry", + "Rabka-Zdrój", + "Raciąż", + "Racibórz", + "Radków", + "Radlin", + "Radłów", + "Radom", + "Radomsko", + "Radomyśl Wielki", + "Radymno", + "Radziejów", + "Radzionków", + "Radzymin", + "Radzyń Chełmiński", + "Radzyń Podlaski", + "Rajgród", + "Rakoniewice", + "Raszków", + "Rawa Mazowiecka", + "Rawicz", + "Recz", + "Reda", + "Rejowiec Fabryczny", + "Resko", + "Reszel", + "Rogoźno", + "Ropczyce", + "Różan", + "Ruciane-Nida", + "Ruda Śląska", + "Rudnik nad Sanem", + "Rumia", + "Rybnik", + "Rychwał", + "Rydułtowy", + "Rydzyna", + "Ryglice", + "Ryki", + "Rymanów", + "Ryn", + "Rypin", + "Rzepin", + "Rzeszów", + "Rzgów", + "Sandomierz", + "Sanok", + "Sejny", + "Serock", + "Sędziszów", + "Sędziszów Małopolski", + "Sępopol", + "Sępólno Krajeńskie", + "Sianów", + "Siechnice", + "Siedlce", + "Siemianowice Śląskie", + "Siemiatycze", + "Sieniawa", + "Sieradz", + "Sieraków", + "Sierpc", + "Siewierz", + "Skalbmierz", + "Skała", + "Skarszewy", + "Skaryszew", + "Skarżysko-Kamienna", + "Skawina", + "Skępe", + "Skierniewice", + "Skoczów", + "Skoki", + "Skórcz", + "Skwierzyna", + "Sława", + "Sławków", + "Sławno", + "Słomniki", + "Słubice", + "Słupca", + "Słupsk", + "Sobótka", + "Sochaczew", + "Sokołów Małopolski", + "Sokołów Podlaski", + "Sokółka", + "Solec Kujawski", + "Sompolno", + "Sopot", + "Sosnowiec", + "Sośnicowice", + "Stalowa Wola", + "Starachowice", + "Stargard Szczeciński", + "Starogard Gdański", + "Stary Sącz", + "Staszów", + "Stawiski", + "Stawiszyn", + "Stąporków", + "Stęszew", + "Stoczek Łukowski", + "Stronie Śląskie", + "Strumień", + "Stryków", + "Strzegom", + "Strzelce Krajeńskie", + "Strzelce Opolskie", + "Strzelin", + "Strzelno", + "Strzyżów", + "Sucha Beskidzka", + "Suchań", + "Suchedniów", + "Suchowola", + "Sulechów", + "Sulejów", + "Sulejówek", + "Sulęcin", + "Sulmierzyce", + "Sułkowice", + "Supraśl", + "Suraż", + "Susz", + "Suwałki", + "Swarzędz", + "Syców", + "Szadek", + "Szamocin", + "Szamotuły", + "Szczawnica", + "Szczawno-Zdrój", + "Szczebrzeszyn", + "Szczecin", + "Szczecinek", + "Szczekociny", + "Szczucin", + "Szczuczyn", + "Szczyrk", + "Szczytna", + "Szczytno", + "Szepietowo", + "Szklarska Poręba", + "Szlichtyngowa", + "Szprotawa", + "Sztum", + "Szubin", + "Szydłowiec", + "Ścinawa", + "Ślesin", + "Śmigiel", + "Śrem", + "Środa Śląska", + "Środa Wielkopolska", + "Świątniki Górne", + "Świdnica", + "Świdnik", + "Świdwin", + "Świebodzice", + "Świebodzin", + "Świecie", + "Świeradów-Zdrój", + "Świerzawa", + "Świętochłowice", + "Świnoujście", + "Tarczyn", + "Tarnobrzeg", + "Tarnogród", + "Tarnowskie Góry", + "Tarnów", + "Tczew", + "Terespol", + "Tłuszcz", + "Tolkmicko", + "Tomaszów Lubelski", + "Tomaszów Mazowiecki", + "Toruń", + "Torzym", + "Toszek", + "Trzcianka", + "Trzciel", + "Trzcińsko-Zdrój", + "Trzebiatów", + "Trzebinia", + "Trzebnica", + "Trzemeszno", + "Tuchola", + "Tuchów", + "Tuczno", + "Tuliszków", + "Turek", + "Tuszyn", + "Twardogóra", + "Tychowo", + "Tychy", + "Tyczyn", + "Tykocin", + "Tyszowce", + "Ujazd", + "Ujście", + "Ulanów", + "Uniejów", + "Ustka", + "Ustroń", + "Ustrzyki Dolne", + "Wadowice", + "Wałbrzych", + "Wałcz", + "Warka", + "Warszawa", + "Warta", + "Wasilków", + "Wąbrzeźno", + "Wąchock", + "Wągrowiec", + "Wąsosz", + "Wejherowo", + "Węgliniec", + "Węgorzewo", + "Węgorzyno", + "Węgrów", + "Wiązów", + "Wieleń", + "Wielichowo", + "Wieliczka", + "Wieluń", + "Wieruszów", + "Więcbork", + "Wilamowice", + "Wisła", + "Witkowo", + "Witnica", + "Wleń", + "Władysławowo", + "Włocławek", + "Włodawa", + "Włoszczowa", + "Wodzisław Śląski", + "Wojcieszów", + "Wojkowice", + "Wojnicz", + "Wolbórz", + "Wolbrom", + "Wolin", + "Wolsztyn", + "Wołczyn", + "Wołomin", + "Wołów", + "Woźniki", + "Wrocław", + "Wronki", + "Września", + "Wschowa", + "Wyrzysk", + "Wysoka", + "Wysokie Mazowieckie", + "Wyszków", + "Wyszogród", + "Wyśmierzyce", + "Zabłudów", + "Zabrze", + "Zagórów", + "Zagórz", + "Zakliczyn", + "Zakopane", + "Zakroczym", + "Zalewo", + "Zambrów", + "Zamość", + "Zator", + "Zawadzkie", + "Zawichost", + "Zawidów", + "Zawiercie", + "Ząbki", + "Ząbkowice Śląskie", + "Zbąszynek", + "Zbąszyń", + "Zduny", + "Zduńska Wola", + "Zdzieszowice", + "Zelów", + "Zgierz", + "Zgorzelec", + "Zielona Góra", + "Zielonka", + "Ziębice", + "Złocieniec", + "Złoczew", + "Złotoryja", + "Złotów", + "Złoty Stok", + "Zwierzyniec", + "Zwoleń", + "Żabno", + "Żagań", + "Żarki", + "Żarów", + "Żary", + "Żelechów", + "Żerków", + "Żmigród", + "Żnin", + "Żory", + "Żukowo", + "Żuromin", + "Żychlin", + "Żyrardów", + "Żywiec" + ]; + +},{}],645:[function(require,module,exports){ + module["exports"] = [ + "Afganistan", + "Albania", + "Algieria", + "Andora", + "Angola", + "Antigua i Barbuda", + "Arabia Saudyjska", + "Argentyna", + "Armenia", + "Australia", + "Austria", + "Azerbejdżan", + "Bahamy", + "Bahrajn", + "Bangladesz", + "Barbados", + "Belgia", + "Belize", + "Benin", + "Bhutan", + "Białoruś", + "Birma", + "Boliwia", + "Sucre", + "Bośnia i Hercegowina", + "Botswana", + "Brazylia", + "Brunei", + "Bułgaria", + "Burkina Faso", + "Burundi", + "Chile", + "Chiny", + "Chorwacja", + "Cypr", + "Czad", + "Czarnogóra", + "Czechy", + "Dania", + "Demokratyczna Republika Konga", + "Dominika", + "Dominikana", + "Dżibuti", + "Egipt", + "Ekwador", + "Erytrea", + "Estonia", + "Etiopia", + "Fidżi", + "Filipiny", + "Finlandia", + "Francja", + "Gabon", + "Gambia", + "Ghana", + "Grecja", + "Grenada", + "Gruzja", + "Gujana", + "Gwatemala", + "Gwinea", + "Gwinea Bissau", + "Gwinea Równikowa", + "Haiti", + "Hiszpania", + "Holandia", + "Haga", + "Honduras", + "Indie", + "Indonezja", + "Irak", + "Iran", + "Irlandia", + "Islandia", + "Izrael", + "Jamajka", + "Japonia", + "Jemen", + "Jordania", + "Kambodża", + "Kamerun", + "Kanada", + "Katar", + "Kazachstan", + "Kenia", + "Kirgistan", + "Kiribati", + "Kolumbia", + "Komory", + "Kongo", + "Korea Południowa", + "Korea Północna", + "Kostaryka", + "Kuba", + "Kuwejt", + "Laos", + "Lesotho", + "Liban", + "Liberia", + "Libia", + "Liechtenstein", + "Litwa", + "Luksemburg", + "Łotwa", + "Macedonia", + "Madagaskar", + "Malawi", + "Malediwy", + "Malezja", + "Mali", + "Malta", + "Maroko", + "Mauretania", + "Mauritius", + "Meksyk", + "Mikronezja", + "Mołdawia", + "Monako", + "Mongolia", + "Mozambik", + "Namibia", + "Nauru", + "Nepal", + "Niemcy", + "Niger", + "Nigeria", + "Nikaragua", + "Norwegia", + "Nowa Zelandia", + "Oman", + "Pakistan", + "Palau", + "Panama", + "Papua-Nowa Gwinea", + "Paragwaj", + "Peru", + "Polska", + "322 575", + "Portugalia", + "Republika Południowej Afryki", + "Republika Środkowoafrykańska", + "Republika Zielonego Przylądka", + "Rosja", + "Rumunia", + "Rwanda", + "Saint Kitts i Nevis", + "Saint Lucia", + "Saint Vincent i Grenadyny", + "Salwador", + "Samoa", + "San Marino", + "Senegal", + "Serbia", + "Seszele", + "Sierra Leone", + "Singapur", + "Słowacja", + "Słowenia", + "Somalia", + "Sri Lanka", + "Stany Zjednoczone", + "Suazi", + "Sudan", + "Sudan Południowy", + "Surinam", + "Syria", + "Szwajcaria", + "Szwecja", + "Tadżykistan", + "Tajlandia", + "Tanzania", + "Timor Wschodni", + "Togo", + "Tonga", + "Trynidad i Tobago", + "Tunezja", + "Turcja", + "Turkmenistan", + "Tuvalu", + "Funafuti", + "Uganda", + "Ukraina", + "Urugwaj", + 2008, + "Uzbekistan", + "Vanuatu", + "Watykan", + "Wenezuela", + "Węgry", + "Wielka Brytania", + "Wietnam", + "Włochy", + "Wybrzeże Kości Słoniowej", + "Wyspy Marshalla", + "Wyspy Salomona", + "Wyspy Świętego Tomasza i Książęca", + "Zambia", + "Zimbabwe", + "Zjednoczone Emiraty Arabskie" + ]; + +},{}],646:[function(require,module,exports){ + module["exports"] = [ + "Polska" + ]; + +},{}],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"); + address.secondary_address = require("./secondary_address"); + address.postcode = require("./postcode"); + address.state = require("./state"); + address.state_abbr = require("./state_abbr"); + address.city_name = require("./city_name"); + address.city = require("./city"); + address.street_name = require("./street_name"); + address.street_address = require("./street_address"); + address.default_country = require("./default_country"); + +},{"./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"] = [ + "##-###" + ]; + +},{}],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", + "Łódzkie", + "Małopolskie", + "Mazowieckie", + "Opolskie", + "Podkarpackie", + "Podlaskie", + "Pomorskie", + "Śląskie", + "Świętokrzyskie", + "Warmińsko-mazurskie", + "Wielkopolskie", + "Zachodniopomorskie" + ]; + +},{}],651:[function(require,module,exports){ + module["exports"] = [ + "DŚ", + "KP", + "LB", + "LS", + "ŁD", + "MP", + "MZ", + "OP", + "PK", + "PL", + "PM", + "ŚL", + "ŚK", + "WM", + "WP", + "ZP" + ]; + +},{}],652:[function(require,module,exports){ + module.exports=require(25) +},{"/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}" + ]; + +},{}],654:[function(require,module,exports){ + module["exports"] = [ + "ul.", + "al." + ]; + +},{}],655:[function(require,module,exports){ + module["exports"] = [ + "50-###-##-##", + "51-###-##-##", + "53-###-##-##", + "57-###-##-##", + "60-###-##-##", + "66-###-##-##", + "69-###-##-##", + "72-###-##-##", + "73-###-##-##", + "78-###-##-##", + "79-###-##-##", + "88-###-##-##" + ]; + +},{}],656:[function(require,module,exports){ + arguments[4][29][0].apply(exports,arguments) +},{"./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"); + company.noun = require("./noun"); + company.bs_verb = require("./bs_verb"); + company.bs_adjective = require("./bs_adjective"); + company.bs_noun = require("./bs_noun"); + company.name = require("./name"); + +},{"./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"); + pl.company = require("./company"); + pl.internet = require("./internet"); + pl.lorem = require("./lorem"); + pl.phone_number = require("./phone_number"); + pl.cell_phone = require("./cell_phone"); + +},{"./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" + ]; + +},{}],668:[function(require,module,exports){ + module.exports=require(36) +},{"/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":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}],673:[function(require,module,exports){ + module["exports"] = [ + "Aaron", + "Abraham", + "Adam", + "Adrian", + "Atanazy", + "Agaton", + "Alan", + "Albert", + "Aleksander", + "Aleksy", + "Alfred", + "Alwar", + "Ambroży", + "Anatol", + "Andrzej", + "Antoni", + "Apollinary", + "Apollo", + "Arkady", + "Arkadiusz", + "Archibald", + "Arystarch", + "Arnold", + "Arseniusz", + "Artur", + "August", + "Baldwin", + "Bazyli", + "Benedykt", + "Beniamin", + "Bernard", + "Bertrand", + "Bertram", + "Borys", + "Brajan", + "Bruno", + "Cezary", + "Cecyliusz", + "Karol", + "Krystian", + "Krzysztof", + "Klarencjusz", + "Klaudiusz", + "Klemens", + "Konrad", + "Konstanty", + "Konstantyn", + "Kornel", + "Korneliusz", + "Korneli", + "Cyryl", + "Cyrus", + "Damian", + "Daniel", + "Dariusz", + "Dawid", + "Dionizy", + "Demetriusz", + "Dominik", + "Donald", + "Dorian", + "Edgar", + "Edmund", + "Edward", + "Edwin", + "Efrem", + "Efraim", + "Eliasz", + "Eleazar", + "Emil", + "Emanuel", + "Erast", + "Ernest", + "Eugeniusz", + "Eustracjusz", + "Fabian", + "Feliks", + "Florian", + "Franciszek", + "Fryderyk", + "Gabriel", + "Gedeon", + "Galfryd", + "Jerzy", + "Gerald", + "Gerazym", + "Gilbert", + "Gonsalwy", + "Grzegorz", + "Gwido", + "Harald", + "Henryk", + "Herbert", + "Herman", + "Hilary", + "Horacy", + "Hubert", + "Hugo", + "Ignacy", + "Igor", + "Hilarion", + "Innocenty", + "Hipolit", + "Ireneusz", + "Erwin", + "Izaak", + "Izajasz", + "Izydor", + "Jakub", + "Jeremi", + "Jeremiasz", + "Hieronim", + "Gerald", + "Joachim", + "Jan", + "Janusz", + "Jonatan", + "Józef", + "Jozue", + "Julian", + "Juliusz", + "Justyn", + "Kalistrat", + "Kazimierz", + "Wawrzyniec", + "Laurenty", + "Laurencjusz", + "Łazarz", + "Leon", + "Leonard", + "Leonid", + "Leon", + "Ludwik", + "Łukasz", + "Lucjan", + "Magnus", + "Makary", + "Marceli", + "Marek", + "Marcin", + "Mateusz", + "Maurycy", + "Maksym", + "Maksymilian", + "Michał", + "Miron", + "Modest", + "Mojżesz", + "Natan", + "Natanael", + "Nazariusz", + "Nazary", + "Nestor", + "Mikołaj", + "Nikodem", + "Olaf", + "Oleg", + "Oliwier", + "Onufry", + "Orestes", + "Oskar", + "Ansgary", + "Osmund", + "Pankracy", + "Pantaleon", + "Patryk", + "Patrycjusz", + "Patrycy", + "Paweł", + "Piotr", + "Filemon", + "Filip", + "Platon", + "Polikarp", + "Porfiry", + "Porfiriusz", + "Prokles", + "Prokul", + "Prokop", + "Kwintyn", + "Randolf", + "Rafał", + "Rajmund", + "Reginald", + "Rajnold", + "Ryszard", + "Robert", + "Roderyk", + "Roger", + "Roland", + "Roman", + "Romeo", + "Reginald", + "Rudolf", + "Samson", + "Samuel", + "Salwator", + "Sebastian", + "Serafin", + "Sergiusz", + "Seweryn", + "Zygmunt", + "Sylwester", + "Szymon", + "Salomon", + "Spirydion", + "Stanisław", + "Szczepan", + "Stefan", + "Terencjusz", + "Teodor", + "Tomasz", + "Tymoteusz", + "Tobiasz", + "Walenty", + "Walentyn", + "Walerian", + "Walery", + "Wiktor", + "Wincenty", + "Witalis", + "Włodzimierz", + "Władysław", + "Błażej", + "Walter", + "Walgierz", + "Wacław", + "Wilfryd", + "Wilhelm", + "Ksawery", + "Ksenofont", + "Jerzy", + "Zachariasz", + "Zachary", + "Ada", + "Adelajda", + "Agata", + "Agnieszka", + "Agrypina", + "Aida", + "Aleksandra", + "Alicja", + "Alina", + "Amanda", + "Anastazja", + "Angela", + "Andżelika", + "Angelina", + "Anna", + "Hanna", + "—", + "Antonina", + "Ariadna", + "Aurora", + "Barbara", + "Beatrycze", + "Berta", + "Brygida", + "Kamila", + "Karolina", + "Karolina", + "Kornelia", + "Katarzyna", + "Cecylia", + "Karolina", + "Chloe", + "Krystyna", + "Klara", + "Klaudia", + "Klementyna", + "Konstancja", + "Koralia", + "Daria", + "Diana", + "Dina", + "Dorota", + "Edyta", + "Eleonora", + "Eliza", + "Elżbieta", + "Izabela", + "Elwira", + "Emilia", + "Estera", + "Eudoksja", + "Eudokia", + "Eugenia", + "Ewa", + "Ewelina", + "Ferdynanda", + "Florencja", + "Franciszka", + "Gabriela", + "Gertruda", + "Gloria", + "Gracja", + "Jadwiga", + "Helena", + "Henryka", + "Nadzieja", + "Ida", + "Ilona", + "Helena", + "Irena", + "Irma", + "Izabela", + "Izolda", + "Jakubina", + "Joanna", + "Janina", + "Żaneta", + "Joanna", + "Ginewra", + "Józefina", + "Judyta", + "Julia", + "Julia", + "Julita", + "Justyna", + "Kira", + "Cyra", + "Kleopatra", + "Larysa", + "Laura", + "Laurencja", + "Laurentyna", + "Lea", + "Leila", + "Eleonora", + "Liliana", + "Lilianna", + "Lilia", + "Lilla", + "Liza", + "Eliza", + "Laura", + "Ludwika", + "Luiza", + "Łucja", + "Lucja", + "Lidia", + "Amabela", + "Magdalena", + "Malwina", + "Małgorzata", + "Greta", + "Marianna", + "Maryna", + "Marta", + "Martyna", + "Maria", + "Matylda", + "Maja", + "Maja", + "Melania", + "Michalina", + "Monika", + "Nadzieja", + "Noemi", + "Natalia", + "Nikola", + "Nina", + "Olga", + "Olimpia", + "Oliwia", + "Ofelia", + "Patrycja", + "Paula", + "Pelagia", + "Penelopa", + "Filipa", + "Paulina", + "Rachela", + "Rebeka", + "Regina", + "Renata", + "Rozalia", + "Róża", + "Roksana", + "Rufina", + "Ruta", + "Sabina", + "Sara", + "Serafina", + "Sybilla", + "Sylwia", + "Zofia", + "Stella", + "Stefania", + "Zuzanna", + "Tamara", + "Tacjana", + "Tekla", + "Teodora", + "Teresa", + "Walentyna", + "Waleria", + "Wanesa", + "Wiara", + "Weronika", + "Wiktoria", + "Wirginia", + "Bibiana", + "Bibianna", + "Wanda", + "Wilhelmina", + "Ksawera", + "Ksenia", + "Zoe" + ]; + +},{}],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", + "Adamiec", + "Adamowicz", + "Adamski", + "Adamus", + "Aleksandrowicz", + "Andrzejczak", + "Andrzejewski", + "Antczak", + "Augustyn", + "Augustyniak", + "Bagiński", + "Balcerzak", + "Banach", + "Banasiak", + "Banasik", + "Banaś", + "Baran", + "Baranowski", + "Barański", + "Bartczak", + "Bartkowiak", + "Bartnik", + "Bartosik", + "Bednarczyk", + "Bednarek", + "Bednarski", + "Bednarz", + "Białas", + "Białek", + "Białkowski", + "Bielak", + "Bielawski", + "Bielecki", + "Bielski", + "Bieniek", + "Biernacki", + "Biernat", + "Bieńkowski", + "Bilski", + "Bober", + "Bochenek", + "Bogucki", + "Bogusz", + "Borek", + "Borkowski", + "Borowiec", + "Borowski", + "Bożek", + "Broda", + "Brzeziński", + "Brzozowski", + "Buczek", + "Buczkowski", + "Buczyński", + "Budziński", + "Budzyński", + "Bujak", + "Bukowski", + "Burzyński", + "Bąk", + "Bąkowski", + "Błaszczak", + "Błaszczyk", + "Cebula", + "Chmiel", + "Chmielewski", + "Chmura", + "Chojnacki", + "Chojnowski", + "Cholewa", + "Chrzanowski", + "Chudzik", + "Cichocki", + "Cichoń", + "Cichy", + "Ciesielski", + "Cieśla", + "Cieślak", + "Cieślik", + "Ciszewski", + "Cybulski", + "Cygan", + "Czaja", + "Czajka", + "Czajkowski", + "Czapla", + "Czarnecki", + "Czech", + "Czechowski", + "Czekaj", + "Czerniak", + "Czerwiński", + "Czyż", + "Czyżewski", + "Dec", + "Dobosz", + "Dobrowolski", + "Dobrzyński", + "Domagała", + "Domański", + "Dominiak", + "Drabik", + "Drozd", + "Drozdowski", + "Drzewiecki", + "Dróżdż", + "Dubiel", + "Duda", + "Dudek", + "Dudziak", + "Dudzik", + "Dudziński", + "Duszyński", + "Dziedzic", + "Dziuba", + "Dąbek", + "Dąbkowski", + "Dąbrowski", + "Dębowski", + "Dębski", + "Długosz", + "Falkowski", + "Fijałkowski", + "Filipek", + "Filipiak", + "Filipowicz", + "Flak", + "Flis", + "Florczak", + "Florek", + "Frankowski", + "Frąckowiak", + "Frączek", + "Frątczak", + "Furman", + "Gadomski", + "Gajda", + "Gajewski", + "Gaweł", + "Gawlik", + "Gawron", + "Gawroński", + "Gałka", + "Gałązka", + "Gil", + "Godlewski", + "Golec", + "Gołąb", + "Gołębiewski", + "Gołębiowski", + "Grabowski", + "Graczyk", + "Grochowski", + "Grudzień", + "Gruszczyński", + "Gruszka", + "Grzegorczyk", + "Grzelak", + "Grzesiak", + "Grzesik", + "Grześkowiak", + "Grzyb", + "Grzybowski", + "Grzywacz", + "Gutowski", + "Guzik", + "Gwóźdź", + "Góra", + "Góral", + "Górecki", + "Górka", + "Górniak", + "Górny", + "Górski", + "Gąsior", + "Gąsiorowski", + "Głogowski", + "Głowacki", + "Głąb", + "Hajduk", + "Herman", + "Iwański", + "Izdebski", + "Jabłoński", + "Jackowski", + "Jagielski", + "Jagiełło", + "Jagodziński", + "Jakubiak", + "Jakubowski", + "Janas", + "Janiak", + "Janicki", + "Janik", + "Janiszewski", + "Jankowiak", + "Jankowski", + "Janowski", + "Janus", + "Janusz", + "Januszewski", + "Jaros", + "Jarosz", + "Jarząbek", + "Jasiński", + "Jastrzębski", + "Jaworski", + "Jaśkiewicz", + "Jezierski", + "Jurek", + "Jurkiewicz", + "Jurkowski", + "Juszczak", + "Jóźwiak", + "Jóźwik", + "Jędrzejczak", + "Jędrzejczyk", + "Jędrzejewski", + "Kacprzak", + "Kaczmarczyk", + "Kaczmarek", + "Kaczmarski", + "Kaczor", + "Kaczorowski", + "Kaczyński", + "Kaleta", + "Kalinowski", + "Kalisz", + "Kamiński", + "Kania", + "Kaniewski", + "Kapusta", + "Karaś", + "Karczewski", + "Karpiński", + "Karwowski", + "Kasperek", + "Kasprzak", + "Kasprzyk", + "Kaszuba", + "Kawa", + "Kawecki", + "Kałuża", + "Kaźmierczak", + "Kiełbasa", + "Kisiel", + "Kita", + "Klimczak", + "Klimek", + "Kmiecik", + "Kmieć", + "Knapik", + "Kobus", + "Kogut", + "Kolasa", + "Komorowski", + "Konieczna", + "Konieczny", + "Konopka", + "Kopczyński", + "Koper", + "Kopeć", + "Korzeniowski", + "Kos", + "Kosiński", + "Kosowski", + "Kostecki", + "Kostrzewa", + "Kot", + "Kotowski", + "Kowal", + "Kowalczuk", + "Kowalczyk", + "Kowalewski", + "Kowalik", + "Kowalski", + "Koza", + "Kozak", + "Kozieł", + "Kozioł", + "Kozłowski", + "Kołakowski", + "Kołodziej", + "Kołodziejczyk", + "Kołodziejski", + "Krajewski", + "Krakowiak", + "Krawczyk", + "Krawiec", + "Kruk", + "Krukowski", + "Krupa", + "Krupiński", + "Kruszewski", + "Krysiak", + "Krzemiński", + "Krzyżanowski", + "Król", + "Królikowski", + "Książek", + "Kubacki", + "Kubiak", + "Kubica", + "Kubicki", + "Kubik", + "Kuc", + "Kucharczyk", + "Kucharski", + "Kuchta", + "Kuciński", + "Kuczyński", + "Kujawa", + "Kujawski", + "Kula", + "Kulesza", + "Kulig", + "Kulik", + "Kuliński", + "Kurek", + "Kurowski", + "Kuś", + "Kwaśniewski", + "Kwiatkowski", + "Kwiecień", + "Kwieciński", + "Kędzierski", + "Kędziora", + "Kępa", + "Kłos", + "Kłosowski", + "Lach", + "Laskowski", + "Lasota", + "Lech", + "Lenart", + "Lesiak", + "Leszczyński", + "Lewandowski", + "Lewicki", + "Leśniak", + "Leśniewski", + "Lipiński", + "Lipka", + "Lipski", + "Lis", + "Lisiecki", + "Lisowski", + "Maciejewski", + "Maciąg", + "Mackiewicz", + "Madej", + "Maj", + "Majcher", + "Majchrzak", + "Majewski", + "Majka", + "Makowski", + "Malec", + "Malicki", + "Malinowski", + "Maliszewski", + "Marchewka", + "Marciniak", + "Marcinkowski", + "Marczak", + "Marek", + "Markiewicz", + "Markowski", + "Marszałek", + "Marzec", + "Masłowski", + "Matusiak", + "Matuszak", + "Matuszewski", + "Matysiak", + "Mazur", + "Mazurek", + "Mazurkiewicz", + "Maćkowiak", + "Małecki", + "Małek", + "Maślanka", + "Michalak", + "Michalczyk", + "Michalik", + "Michalski", + "Michałek", + "Michałowski", + "Mielczarek", + "Mierzejewski", + "Mika", + "Mikołajczak", + "Mikołajczyk", + "Mikulski", + "Milczarek", + "Milewski", + "Miller", + "Misiak", + "Misztal", + "Miśkiewicz", + "Modzelewski", + "Molenda", + "Morawski", + "Motyka", + "Mroczek", + "Mroczkowski", + "Mrozek", + "Mróz", + "Mucha", + "Murawski", + "Musiał", + "Muszyński", + "Młynarczyk", + "Napierała", + "Nawrocki", + "Nawrot", + "Niedziela", + "Niedzielski", + "Niedźwiecki", + "Niemczyk", + "Niemiec", + "Niewiadomski", + "Noga", + "Nowacki", + "Nowaczyk", + "Nowak", + "Nowakowski", + "Nowicki", + "Nowiński", + "Olczak", + "Olejniczak", + "Olejnik", + "Olszewski", + "Orzechowski", + "Orłowski", + "Osiński", + "Ossowski", + "Ostrowski", + "Owczarek", + "Paczkowski", + "Pająk", + "Pakuła", + "Paluch", + "Panek", + "Partyka", + "Pasternak", + "Paszkowski", + "Pawelec", + "Pawlak", + "Pawlicki", + "Pawlik", + "Pawlikowski", + "Pawłowski", + "Pałka", + "Piasecki", + "Piechota", + "Piekarski", + "Pietras", + "Pietruszka", + "Pietrzak", + "Pietrzyk", + "Pilarski", + "Pilch", + "Piotrowicz", + "Piotrowski", + "Piwowarczyk", + "Piórkowski", + "Piątek", + "Piątkowski", + "Piłat", + "Pluta", + "Podgórski", + "Polak", + "Popławski", + "Porębski", + "Prokop", + "Prus", + "Przybylski", + "Przybysz", + "Przybył", + "Przybyła", + "Ptak", + "Puchalski", + "Pytel", + "Płonka", + "Raczyński", + "Radecki", + "Radomski", + "Rak", + "Rakowski", + "Ratajczak", + "Robak", + "Rogala", + "Rogalski", + "Rogowski", + "Rojek", + "Romanowski", + "Rosa", + "Rosiak", + "Rosiński", + "Ruciński", + "Rudnicki", + "Rudziński", + "Rudzki", + "Rusin", + "Rutkowski", + "Rybak", + "Rybarczyk", + "Rybicki", + "Rzepka", + "Różański", + "Różycki", + "Sadowski", + "Sawicki", + "Serafin", + "Siedlecki", + "Sienkiewicz", + "Sieradzki", + "Sikora", + "Sikorski", + "Sitek", + "Siwek", + "Skalski", + "Skiba", + "Skibiński", + "Skoczylas", + "Skowron", + "Skowronek", + "Skowroński", + "Skrzypczak", + "Skrzypek", + "Skóra", + "Smoliński", + "Sobczak", + "Sobczyk", + "Sobieraj", + "Sobolewski", + "Socha", + "Sochacki", + "Sokołowski", + "Sokół", + "Sosnowski", + "Sowa", + "Sowiński", + "Sołtys", + "Sołtysiak", + "Sroka", + "Stachowiak", + "Stachowicz", + "Stachura", + "Stachurski", + "Stanek", + "Staniszewski", + "Stanisławski", + "Stankiewicz", + "Stasiak", + "Staszewski", + "Stawicki", + "Stec", + "Stefaniak", + "Stefański", + "Stelmach", + "Stolarczyk", + "Stolarski", + "Strzelczyk", + "Strzelecki", + "Stępień", + "Stępniak", + "Surma", + "Suski", + "Szafrański", + "Szatkowski", + "Szczepaniak", + "Szczepanik", + "Szczepański", + "Szczerba", + "Szcześniak", + "Szczygieł", + "Szczęsna", + "Szczęsny", + "Szeląg", + "Szewczyk", + "Szostak", + "Szulc", + "Szwarc", + "Szwed", + "Szydłowski", + "Szymański", + "Szymczak", + "Szymczyk", + "Szymkowiak", + "Szyszka", + "Sławiński", + "Słowik", + "Słowiński", + "Tarnowski", + "Tkaczyk", + "Tokarski", + "Tomala", + "Tomaszewski", + "Tomczak", + "Tomczyk", + "Tracz", + "Trojanowski", + "Trzciński", + "Trzeciak", + "Turek", + "Twardowski", + "Urban", + "Urbanek", + "Urbaniak", + "Urbanowicz", + "Urbańczyk", + "Urbański", + "Walczak", + "Walkowiak", + "Warchoł", + "Wasiak", + "Wasilewski", + "Wawrzyniak", + "Wesołowski", + "Wieczorek", + "Wierzbicki", + "Wilczek", + "Wilczyński", + "Wilk", + "Winiarski", + "Witczak", + "Witek", + "Witkowski", + "Wiącek", + "Więcek", + "Więckowski", + "Wiśniewski", + "Wnuk", + "Wojciechowski", + "Wojtas", + "Wojtasik", + "Wojtczak", + "Wojtkowiak", + "Wolak", + "Woliński", + "Wolny", + "Wolski", + "Woś", + "Woźniak", + "Wrona", + "Wroński", + "Wróbel", + "Wróblewski", + "Wypych", + "Wysocki", + "Wyszyński", + "Wójcicki", + "Wójcik", + "Wójtowicz", + "Wąsik", + "Węgrzyn", + "Włodarczyk", + "Włodarski", + "Zaborowski", + "Zabłocki", + "Zagórski", + "Zając", + "Zajączkowski", + "Zakrzewski", + "Zalewski", + "Zaremba", + "Zarzycki", + "Zaręba", + "Zawada", + "Zawadzki", + "Zdunek", + "Zieliński", + "Zielonka", + "Ziółkowski", + "Zięba", + "Ziętek", + "Zwoliński", + "Zych", + "Zygmunt", + "Łapiński", + "Łuczak", + "Łukasiewicz", + "Łukasik", + "Łukaszewski", + "Śliwa", + "Śliwiński", + "Ślusarczyk", + "Świderski", + "Świerczyński", + "Świątek", + "Żak", + "Żebrowski", + "Żmuda", + "Żuk", + "Żukowski", + "Żurawski", + "Żurek", + "Żyła" + ]; + +},{}],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" + ]; + +},{}],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-###-##-##", + "16-###-##-##", + "17-###-##-##", + "18-###-##-##", + "22-###-##-##", + "23-###-##-##", + "24-###-##-##", + "25-###-##-##", + "29-###-##-##", + "32-###-##-##", + "33-###-##-##", + "34-###-##-##", + "41-###-##-##", + "42-###-##-##", + "43-###-##-##", + "44-###-##-##", + "46-###-##-##", + "48-###-##-##", + "52-###-##-##", + "54-###-##-##", + "55-###-##-##", + "56-###-##-##", + "58-###-##-##", + "59-###-##-##", + "61-###-##-##", + "62-###-##-##", + "63-###-##-##", + "65-###-##-##", + "67-###-##-##", + "68-###-##-##", + "71-###-##-##", + "74-###-##-##", + "75-###-##-##", + "76-###-##-##", + "77-###-##-##", + "81-###-##-##", + "82-###-##-##", + "83-###-##-##", + "84-###-##-##", + "85-###-##-##", + "86-###-##-##", + "87-###-##-##", + "89-###-##-##", + "91-###-##-##", + "94-###-##-##", + "95-###-##-##" + ]; + +},{}],680:[function(require,module,exports){ + arguments[4][47][0].apply(exports,arguments) +},{"./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" + ]; + +},{}],683:[function(require,module,exports){ + module["exports"] = [ + "do Descoberto", + "de Nossa Senhora", + "do Norte", + "do Sul" + ]; + +},{}],684:[function(require,module,exports){ + module["exports"] = [ + "Afeganistão", + "Albânia", + "Algéria", + "Samoa", + "Andorra", + "Angola", + "Anguilla", + "Antigua and Barbada", + "Argentina", + "Armênia", + "Aruba", + "Austrália", + "Áustria", + "Alzerbajão", + "Bahamas", + "Barém", + "Bangladesh", + "Barbado", + "Belgrado", + "Bélgica", + "Belize", + "Benin", + "Bermuda", + "Bhutan", + "Bolívia", + "Bôsnia", + "Botuasuna", + "Bouvetoia", + "Brasil", + "Arquipélago de Chagos", + "Ilhas Virgens", + "Brunei", + "Bulgária", + "Burkina Faso", + "Burundi", + "Cambójia", + "Camarões", + "Canadá", + "Cabo Verde", + "Ilhas Caiman", + "República da África Central", + "Chad", + "Chile", + "China", + "Ilhas Natal", + "Ilhas Cocos", + "Colômbia", + "Comoros", + "Congo", + "Ilhas Cook", + "Costa Rica", + "Costa do Marfim", + "Croácia", + "Cuba", + "Cyprus", + "República Tcheca", + "Dinamarca", + "Djibouti", + "Dominica", + "República Dominicana", + "Equador", + "Egito", + "El Salvador", + "Guiné Equatorial", + "Eritrea", + "Estônia", + "Etiópia", + "Ilhas Faroe", + "Malvinas", + "Fiji", + "Finlândia", + "França", + "Guiné Francesa", + "Polinésia Francesa", + "Gabão", + "Gâmbia", + "Georgia", + "Alemanha", + "Gana", + "Gibraltar", + "Grécia", + "Groelândia", + "Granada", + "Guadalupe", + "Guano", + "Guatemala", + "Guernsey", + "Guiné", + "Guiné-Bissau", + "Guiana", + "Haiti", + "Heard Island and McDonald Islands", + "Vaticano", + "Honduras", + "Hong Kong", + "Hungria", + "Iceland", + "Índia", + "Indonésia", + "Irã", + "Iraque", + "Irlanda", + "Ilha de Man", + "Israel", + "Itália", + "Jamaica", + "Japão", + "Jersey", + "Jordânia", + "Cazaquistão", + "Quênia", + "Kiribati", + "Coreia do Norte", + "Coreia do Sul", + "Kuwait", + "Kyrgyz Republic", + "República Democrática de Lao People", + "Latvia", + "Líbano", + "Lesotho", + "Libéria", + "Libyan Arab Jamahiriya", + "Liechtenstein", + "Lituânia", + "Luxemburgo", + "Macao", + "Macedônia", + "Madagascar", + "Malawi", + "Malásia", + "Maldives", + "Mali", + "Malta", + "Ilhas Marshall", + "Martinica", + "Mauritânia", + "Mauritius", + "Mayotte", + "México", + "Micronésia", + "Moldova", + "Mônaco", + "Mongólia", + "Montenegro", + "Montserrat", + "Marrocos", + "Moçambique", + "Myanmar", + "Namibia", + "Nauru", + "Nepal", + "Antilhas Holandesas", + "Holanda", + "Nova Caledonia", + "Nova Zelândia", + "Nicarágua", + "Nigéria", + "Niue", + "Ilha Norfolk", + "Northern Mariana Islands", + "Noruega", + "Oman", + "Paquistão", + "Palau", + "Território da Palestina", + "Panamá", + "Nova Guiné Papua", + "Paraguai", + "Peru", + "Filipinas", + "Polônia", + "Portugal", + "Puerto Rico", + "Qatar", + "Romênia", + "Rússia", + "Ruanda", + "São Bartolomeu", + "Santa Helena", + "Santa Lúcia", + "Saint Martin", + "Saint Pierre and Miquelon", + "Saint Vincent and the Grenadines", + "Samoa", + "San Marino", + "Sao Tomé e Príncipe", + "Arábia Saudita", + "Senegal", + "Sérvia", + "Seychelles", + "Serra Leoa", + "Singapura", + "Eslováquia", + "Eslovênia", + "Ilhas Salomão", + "Somália", + "África do Sul", + "South Georgia and the South Sandwich Islands", + "Spanha", + "Sri Lanka", + "Sudão", + "Suriname", + "Svalbard & Jan Mayen Islands", + "Swaziland", + "Suécia", + "Suíça", + "Síria", + "Taiwan", + "Tajiquistão", + "Tanzânia", + "Tailândia", + "Timor-Leste", + "Togo", + "Tokelau", + "Tonga", + "Trinidá e Tobago", + "Tunísia", + "Turquia", + "Turcomenistão", + "Turks and Caicos Islands", + "Tuvalu", + "Uganda", + "Ucrânia", + "Emirados Árabes Unidos", + "Reino Unido", + "Estados Unidos da América", + "Estados Unidos das Ilhas Virgens", + "Uruguai", + "Uzbequistão", + "Vanuatu", + "Venezuela", + "Vietnã", + "Wallis and Futuna", + "Sahara", + "Yemen", + "Zâmbia", + "Zimbábue" + ]; + +},{}],685:[function(require,module,exports){ + module["exports"] = [ + "Brasil" + ]; + +},{}],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"); + address.building_number = require("./building_number"); + address.street_suffix = require("./street_suffix"); + address.secondary_address = require("./secondary_address"); + address.postcode = require("./postcode"); + address.state = require("./state"); + address.state_abbr = require("./state_abbr"); + address.default_country = require("./default_country"); + +},{"./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"] = [ + "#####", + "#####-###" + ]; + +},{}],688:[function(require,module,exports){ + module["exports"] = [ + "Apto. ###", + "Sobrado ##", + "Casa #", + "Lote ##", + "Quadra ##" + ]; + +},{}],689:[function(require,module,exports){ + module["exports"] = [ + "Acre", + "Alagoas", + "Amapá", + "Amazonas", + "Bahia", + "Ceará", + "Distrito Federal", + "Espírito Santo", + "Goiás", + "Maranhão", + "Mato Grosso", + "Mato Grosso do Sul", + "Minas Gerais", + "Pará", + "Paraíba", + "Paraná", + "Pernambuco", + "Piauí", + "Rio de Janeiro", + "Rio Grande do Norte", + "Rio Grande do Sul", + "Rondônia", + "Roraima", + "Santa Catarina", + "São Paulo", + "Sergipe", + "Tocantins" + ]; + +},{}],690:[function(require,module,exports){ + module["exports"] = [ + "AC", + "AL", + "AP", + "AM", + "BA", + "CE", + "DF", + "ES", + "GO", + "MA", + "MT", + "MS", + "PA", + "PB", + "PR", + "PE", + "PI", + "RJ", + "RN", + "RS", + "RO", + "RR", + "SC", + "SP" + ]; + +},{}],691:[function(require,module,exports){ + module["exports"] = [ + "Rua", + "Avenida", + "Travessa", + "Ponte", + "Alameda", + "Marginal", + "Viela", + "Rodovia" + ]; + +},{}],692:[function(require,module,exports){ + arguments[4][83][0].apply(exports,arguments) +},{"./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}" + ]; + +},{}],694:[function(require,module,exports){ + module["exports"] = [ + "S.A.", + "LTDA", + "e Associados", + "Comércio" + ]; + +},{}],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":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" + ]; + +},{}],697:[function(require,module,exports){ + module["exports"] = [ + "gmail.com", + "yahoo.com", + "hotmail.com", + "live.com", + "bol.com.br" + ]; + +},{}],698:[function(require,module,exports){ + arguments[4][37][0].apply(exports,arguments) +},{"./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":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}],701:[function(require,module,exports){ + module["exports"] = [ + "Alessandro", + "Alessandra", + "Alexandre", + "Aline", + "Antônio", + "Breno", + "Bruna", + "Carlos", + "Carla", + "Célia", + "Cecília", + "César", + "Danilo", + "Dalila", + "Deneval", + "Eduardo", + "Eduarda", + "Esther", + "Elísio", + "Fábio", + "Fabrício", + "Fabrícia", + "Félix", + "Felícia", + "Feliciano", + "Frederico", + "Fabiano", + "Gustavo", + "Guilherme", + "Gúbio", + "Heitor", + "Hélio", + "Hugo", + "Isabel", + "Isabela", + "Ígor", + "João", + "Joana", + "Júlio César", + "Júlio", + "Júlia", + "Janaína", + "Karla", + "Kléber", + "Lucas", + "Lorena", + "Lorraine", + "Larissa", + "Ladislau", + "Marcos", + "Meire", + "Marcelo", + "Marcela", + "Margarida", + "Mércia", + "Márcia", + "Marli", + "Morgana", + "Maria", + "Norberto", + "Natália", + "Nataniel", + "Núbia", + "Ofélia", + "Paulo", + "Paula", + "Pablo", + "Pedro", + "Raul", + "Rafael", + "Rafaela", + "Ricardo", + "Roberto", + "Roberta", + "Sílvia", + "Sílvia", + "Silas", + "Suélen", + "Sara", + "Salvador", + "Sirineu", + "Talita", + "Tertuliano", + "Vicente", + "Víctor", + "Vitória", + "Yango", + "Yago", + "Yuri", + "Washington", + "Warley" + ]; + +},{}],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":701,"./last_name":703,"./prefix":704,"./suffix":705}],703:[function(require,module,exports){ + module["exports"] = [ + "Silva", + "Souza", + "Carvalho", + "Santos", + "Reis", + "Xavier", + "Franco", + "Braga", + "Macedo", + "Batista", + "Barros", + "Moraes", + "Costa", + "Pereira", + "Carvalho", + "Melo", + "Saraiva", + "Nogueira", + "Oliveira", + "Martins", + "Moreira", + "Albuquerque" + ]; + +},{}],704:[function(require,module,exports){ + module["exports"] = [ + "Sr.", + "Sra.", + "Srta.", + "Dr." + ]; + +},{}],705:[function(require,module,exports){ + module["exports"] = [ + "Jr.", + "Neto", + "Filho" + ]; + +},{}],706:[function(require,module,exports){ + module["exports"] = [ + "(##) ####-####", + "+55 (##) ####-####", + "(##) #####-####" + ]; + +},{}],707:[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){ + module["exports"] = [ + "###" + ]; + +},{}],709:[function(require,module,exports){ + module["exports"] = [ + "#{Address.city_name}" + ]; + +},{}],710:[function(require,module,exports){ + module["exports"] = [ + "Москва", + "Владимир", + "Санкт-Петербург", + "Новосибирск", + "Екатеринбург", + "Нижний Новгород", + "Самара", + "Казань", + "Омск", + "Челябинск", + "Ростов-на-Дону", + "Уфа", + "Волгоград", + "Пермь", + "Красноярск", + "Воронеж", + "Саратов", + "Краснодар", + "Тольятти", + "Ижевск", + "Барнаул", + "Ульяновск", + "Тюмень", + "Иркутск", + "Владивосток", + "Ярославль", + "Хабаровск", + "Махачкала", + "Оренбург", + "Новокузнецк", + "Томск", + "Кемерово", + "Рязань", + "Астрахань", + "Пенза", + "Липецк", + "Тула", + "Киров", + "Чебоксары", + "Курск", + "Брянскm Магнитогорск", + "Иваново", + "Тверь", + "Ставрополь", + "Белгород", + "Сочи" + ]; + +},{}],711:[function(require,module,exports){ + module["exports"] = [ + "Австралия", + "Австрия", + "Азербайджан", + "Албания", + "Алжир", + "Американское Самоа (не признана)", + "Ангилья", + "Ангола", + "Андорра", + "Антарктика (не признана)", + "Антигуа и Барбуда", + "Антильские Острова (не признана)", + "Аомынь (не признана)", + "Аргентина", + "Армения", + "Афганистан", + "Багамские Острова", + "Бангладеш", + "Барбадос", + "Бахрейн", + "Беларусь", + "Белиз", + "Бельгия", + "Бенин", + "Болгария", + "Боливия", + "Босния и Герцеговина", + "Ботсвана", + "Бразилия", + "Бруней", + "Буркина-Фасо", + "Бурунди", + "Бутан", + "Вануату", + "Ватикан", + "Великобритания", + "Венгрия", + "Венесуэла", + "Восточный Тимор", + "Вьетнам", + "Габон", + "Гаити", + "Гайана", + "Гамбия", + "Гана", + "Гваделупа (не признана)", + "Гватемала", + "Гвиана (не признана)", + "Гвинея", + "Гвинея-Бисау", + "Германия", + "Гондурас", + "Гренада", + "Греция", + "Грузия", + "Дания", + "Джибути", + "Доминика", + "Доминиканская Республика", + "Египет", + "Замбия", + "Зимбабве", + "Израиль", + "Индия", + "Индонезия", + "Иордания", + "Ирак", + "Иран", + "Ирландия", + "Исландия", + "Испания", + "Италия", + "Йемен", + "Кабо-Верде", + "Казахстан", + "Камбоджа", + "Камерун", + "Канада", + "Катар", + "Кения", + "Кипр", + "Кирибати", + "Китай", + "Колумбия", + "Коморские Острова", + "Конго", + "Демократическая Республика", + "Корея (Северная)", + "Корея (Южная)", + "Косово", + "Коста-Рика", + "Кот-д'Ивуар", + "Куба", + "Кувейт", + "Кука острова", + "Кыргызстан", + "Лаос", + "Латвия", + "Лесото", + "Либерия", + "Ливан", + "Ливия", + "Литва", + "Лихтенштейн", + "Люксембург", + "Маврикий", + "Мавритания", + "Мадагаскар", + "Македония", + "Малави", + "Малайзия", + "Мали", + "Мальдивы", + "Мальта", + "Маршалловы Острова", + "Мексика", + "Микронезия", + "Мозамбик", + "Молдова", + "Монако", + "Монголия", + "Марокко", + "Мьянма", + "Намибия", + "Науру", + "Непал", + "Нигер", + "Нигерия", + "Нидерланды", + "Никарагуа", + "Новая Зеландия", + "Норвегия", + "Объединенные Арабские Эмираты", + "Оман", + "Пакистан", + "Палау", + "Панама", + "Папуа — Новая Гвинея", + "Парагвай", + "Перу", + "Польша", + "Португалия", + "Республика Конго", + "Россия", + "Руанда", + "Румыния", + "Сальвадор", + "Самоа", + "Сан-Марино", + "Сан-Томе и Принсипи", + "Саудовская Аравия", + "Свазиленд", + "Сейшельские острова", + "Сенегал", + "Сент-Винсент и Гренадины", + "Сент-Киттс и Невис", + "Сент-Люсия", + "Сербия", + "Сингапур", + "Сирия", + "Словакия", + "Словения", + "Соединенные Штаты Америки", + "Соломоновы Острова", + "Сомали", + "Судан", + "Суринам", + "Сьерра-Леоне", + "Таджикистан", + "Таиланд", + "Тайвань (не признана)", + "Тамил-Илам (не признана)", + "Танзания", + "Тёркс и Кайкос (не признана)", + "Того", + "Токелау (не признана)", + "Тонга", + "Тринидад и Тобаго", + "Тувалу", + "Тунис", + "Турецкая Республика Северного Кипра (не признана)", + "Туркменистан", + "Турция", + "Уганда", + "Узбекистан", + "Украина", + "Уругвай", + "Фарерские Острова (не признана)", + "Фиджи", + "Филиппины", + "Финляндия", + "Франция", + "Французская Полинезия (не признана)", + "Хорватия", + "Центральноафриканская Республика", + "Чад", + "Черногория", + "Чехия", + "Чили", + "Швейцария", + "Швеция", + "Шри-Ланка", + "Эквадор", + "Экваториальная Гвинея", + "Эритрея", + "Эстония", + "Эфиопия", + "Южно-Африканская Республика", + "Ямайка", + "Япония" + ]; + +},{}],712:[function(require,module,exports){ + 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"); + address.secondary_address = require("./secondary_address"); + address.postcode = require("./postcode"); + address.state = require("./state"); + address.street_title = require("./street_title"); + address.city_name = require("./city_name"); + address.city = require("./city"); + 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,"./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"] = [ + "######" + ]; + +},{}],715:[function(require,module,exports){ + module["exports"] = [ + "кв. ###" + ]; + +},{}],716:[function(require,module,exports){ + module["exports"] = [ + "Республика Адыгея", + "Республика Башкортостан", + "Республика Бурятия", + "Республика Алтай Республика Дагестан", + "Республика Ингушетия", + "Кабардино-Балкарская Республика", + "Республика Калмыкия", + "Республика Карачаево-Черкессия", + "Республика Карелия", + "Республика Коми", + "Республика Марий Эл", + "Республика Мордовия", + "Республика Саха (Якутия)", + "Республика Северная Осетия-Алания", + "Республика Татарстан", + "Республика Тыва", + "Удмуртская Республика", + "Республика Хакасия", + "Чувашская Республика", + "Алтайский край", + "Краснодарский край", + "Красноярский край", + "Приморский край", + "Ставропольский край", + "Хабаровский край", + "Амурская область", + "Архангельская область", + "Астраханская область", + "Белгородская область", + "Брянская область", + "Владимирская область", + "Волгоградская область", + "Вологодская область", + "Воронежская область", + "Ивановская область", + "Иркутская область", + "Калиниградская область", + "Калужская область", + "Камчатская область", + "Кемеровская область", + "Кировская область", + "Костромская область", + "Курганская область", + "Курская область", + "Ленинградская область", + "Липецкая область", + "Магаданская область", + "Московская область", + "Мурманская область", + "Нижегородская область", + "Новгородская область", + "Новосибирская область", + "Омская область", + "Оренбургская область", + "Орловская область", + "Пензенская область", + "Пермская область", + "Псковская область", + "Ростовская область", + "Рязанская область", + "Самарская область", + "Саратовская область", + "Сахалинская область", + "Свердловская область", + "Смоленская область", + "Тамбовская область", + "Тверская область", + "Томская область", + "Тульская область", + "Тюменская область", + "Ульяновская область", + "Челябинская область", + "Читинская область", + "Ярославская область", + "Еврейская автономная область", + "Агинский Бурятский авт. округ", + "Коми-Пермяцкий автономный округ", + "Корякский автономный округ", + "Ненецкий автономный округ", + "Таймырский (Долгано-Ненецкий) автономный округ", + "Усть-Ордынский Бурятский автономный округ", + "Ханты-Мансийский автономный округ", + "Чукотский автономный округ", + "Эвенкийский автономный округ", + "Ямало-Ненецкий автономный округ", + "Чеченская Республика" + ]; + +},{}],717:[function(require,module,exports){ + module["exports"] = [ + "#{street_name}, #{building_number}" + ]; + +},{}],718:[function(require,module,exports){ + module["exports"] = [ + "#{street_suffix} #{Address.street_title}", + "#{Address.street_title} #{street_suffix}" + ]; + +},{}],719:[function(require,module,exports){ + module["exports"] = [ + "ул.", + "улица", + "проспект", + "пр.", + "площадь", + "пл." + ]; + +},{}],720:[function(require,module,exports){ + module["exports"] = [ + "Советская", + "Молодежная", + "Центральная", + "Школьная", + "Новая", + "Садовая", + "Лесная", + "Набережная", + "Ленина", + "Мира", + "Октябрьская", + "Зеленая", + "Комсомольская", + "Заречная", + "Первомайская", + "Гагарина", + "Полевая", + "Луговая", + "Пионерская", + "Кирова", + "Юбилейная", + "Северная", + "Пролетарская", + "Степная", + "Пушкина", + "Калинина", + "Южная", + "Колхозная", + "Рабочая", + "Солнечная", + "Железнодорожная", + "Восточная", + "Заводская", + "Чапаева", + "Нагорная", + "Строителей", + "Береговая", + "Победы", + "Горького", + "Кооперативная", + "Красноармейская", + "Совхозная", + "Речная", + "Школьный", + "Спортивная", + "Озерная", + "Строительная", + "Парковая", + "Чкалова", + "Мичурина", + "речень улиц", + "Подгорная", + "Дружбы", + "Почтовая", + "Партизанская", + "Вокзальная", + "Лермонтова", + "Свободы", + "Дорожная", + "Дачная", + "Маяковского", + "Западная", + "Фрунзе", + "Дзержинского", + "Московская", + "Свердлова", + "Некрасова", + "Гоголя", + "Красная", + "Трудовая", + "Шоссейная", + "Чехова", + "Коммунистическая", + "Труда", + "Комарова", + "Матросова", + "Островского", + "Сосновая", + "Клубная", + "Куйбышева", + "Крупской", + "Березовая", + "Карла Маркса", + "8 Марта", + "Больничная", + "Садовый", + "Интернациональная", + "Суворова", + "Цветочная", + "Трактовая", + "Ломоносова", + "Горная", + "Космонавтов", + "Энергетиков", + "Шевченко", + "Весенняя", + "Механизаторов", + "Коммунальная", + "Лесной", + "40 лет Победы", + "Майская" + ]; + +},{}],721:[function(require,module,exports){ + module["exports"] = [ + "красный", + "зеленый", + "синий", + "желтый", + "багровый", + "мятный", + "зеленовато-голубой", + "белый", + "черный", + "оранжевый", + "розовый", + "серый", + "красно-коричневый", + "фиолетовый", + "бирюзовый", + "желто-коричневый", + "небесно голубой", + "оранжево-розовый", + "темно-фиолетовый", + "орхидный", + "оливковый", + "пурпурный", + "лимонный", + "кремовый", + "сине-фиолетовый", + "золотой", + "красно-пурпурный", + "голубой", + "лазурный", + "лиловый", + "серебряный" + ]; + +},{}],722:[function(require,module,exports){ + 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": [ + "Маленький", + "Эргономичный", + "Грубый", + "Интеллектуальный", + "Великолепный", + "Невероятный", + "Фантастический", + "Практчиный", + "Лоснящийся", + "Потрясающий" + ], + "material": [ + "Стальной", + "Деревянный", + "Бетонный", + "Пластиковый", + "Хлопковый", + "Гранитный", + "Резиновый" + ], + "product": [ + "Стул", + "Автомобиль", + "Компьютер", + "Берет", + "Кулон", + "Стол", + "Свитер", + "Ремень", + "Ботинок" + ] + }; + +},{}],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}", + "#{prefix} #{suffix}#{suffix}#{suffix}", + "#{prefix} #{Address.city_name}#{suffix}", + "#{prefix} #{Address.city_name}#{suffix}#{suffix}", + "#{prefix} #{Address.city_name}#{suffix}#{suffix}#{suffix}" + ]; + +},{}],727:[function(require,module,exports){ + module["exports"] = [ + "ИП", + "ООО", + "ЗАО", + "ОАО", + "НКО", + "ТСЖ", + "ОП" + ]; + +},{}],728:[function(require,module,exports){ + 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: [ + "январь", + "февраль", + "март", + "апрель", + "май", + "июнь", + "июль", + "август", + "сентябрь", + "октябрь", + "ноябрь", + "декабрь" + ], + wide_context: [ + "января", + "февраля", + "марта", + "апреля", + "мая", + "июня", + "июля", + "августа", + "сентября", + "октября", + "ноября", + "декабря" + ], + abbr: [ + "янв.", + "февр.", + "март", + "апр.", + "май", + "июнь", + "июль", + "авг.", + "сент.", + "окт.", + "нояб.", + "дек." + ], + abbr_context: [ + "янв.", + "февр.", + "марта", + "апр.", + "мая", + "июня", + "июля", + "авг.", + "сент.", + "окт.", + "нояб.", + "дек." + ] + }; + +},{}],731:[function(require,module,exports){ +// source: http://unicode.org/cldr/trac/browser/tags/release-27/common/main/ru.xml#L1825 + module["exports"] = { + wide: [ + "Воскресенье", + "Понедельник", + "Вторник", + "Среда", + "Четверг", + "Пятница", + "Суббота" + ], + wide_context: [ + "воскресенье", + "понедельник", + "вторник", + "среда", + "четверг", + "пятница", + "суббота" + ], + abbr: [ + "Вс", + "Пн", + "Вт", + "Ср", + "Чт", + "Пт", + "Сб" + ], + abbr_context: [ + "вс", + "пн", + "вт", + "ср", + "чт", + "пт", + "сб" + ] + }; + +},{}],732:[function(require,module,exports){ + var ru = {}; + module['exports'] = ru; + ru.title = "Russian"; + ru.separator = " и "; + ru.address = require("./address"); + ru.internet = require("./internet"); + ru.name = require("./name"); + ru.phone_number = require("./phone_number"); + ru.commerce = require("./commerce"); + ru.company = require("./company"); + ru.date = require("./date"); + +},{"./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" + ]; + +},{}],734:[function(require,module,exports){ + module["exports"] = [ + "yandex.ru", + "ya.ru", + "mail.ru", + "gmail.com", + "yahoo.com", + "hotmail.com" + ]; + +},{}],735:[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"] = [ + "Анна", + "Алёна", + "Алевтина", + "Александра", + "Алина", + "Алла", + "Анастасия", + "Ангелина", + "Анжела", + "Анжелика", + "Антонида", + "Антонина", + "Анфиса", + "Арина", + "Валентина", + "Валерия", + "Варвара", + "Василиса", + "Вера", + "Вероника", + "Виктория", + "Галина", + "Дарья", + "Евгения", + "Екатерина", + "Елена", + "Елизавета", + "Жанна", + "Зинаида", + "Зоя", + "Ирина", + "Кира", + "Клавдия", + "Ксения", + "Лариса", + "Лидия", + "Любовь", + "Людмила", + "Маргарита", + "Марина", + "Мария", + "Надежда", + "Наталья", + "Нина", + "Оксана", + "Ольга", + "Раиса", + "Регина", + "Римма", + "Светлана", + "София", + "Таисия", + "Тамара", + "Татьяна", + "Ульяна", + "Юлия" + ]; + +},{}],737:[function(require,module,exports){ + module["exports"] = [ + "Смирнова", + "Иванова", + "Кузнецова", + "Попова", + "Соколова", + "Лебедева", + "Козлова", + "Новикова", + "Морозова", + "Петрова", + "Волкова", + "Соловьева", + "Васильева", + "Зайцева", + "Павлова", + "Семенова", + "Голубева", + "Виноградова", + "Богданова", + "Воробьева", + "Федорова", + "Михайлова", + "Беляева", + "Тарасова", + "Белова", + "Комарова", + "Орлова", + "Киселева", + "Макарова", + "Андреева", + "Ковалева", + "Ильина", + "Гусева", + "Титова", + "Кузьмина", + "Кудрявцева", + "Баранова", + "Куликова", + "Алексеева", + "Степанова", + "Яковлева", + "Сорокина", + "Сергеева", + "Романова", + "Захарова", + "Борисова", + "Королева", + "Герасимова", + "Пономарева", + "Григорьева", + "Лазарева", + "Медведева", + "Ершова", + "Никитина", + "Соболева", + "Рябова", + "Полякова", + "Цветкова", + "Данилова", + "Жукова", + "Фролова", + "Журавлева", + "Николаева", + "Крылова", + "Максимова", + "Сидорова", + "Осипова", + "Белоусова", + "Федотова", + "Дорофеева", + "Егорова", + "Матвеева", + "Боброва", + "Дмитриева", + "Калинина", + "Анисимова", + "Петухова", + "Антонова", + "Тимофеева", + "Никифорова", + "Веселова", + "Филиппова", + "Маркова", + "Большакова", + "Суханова", + "Миронова", + "Ширяева", + "Александрова", + "Коновалова", + "Шестакова", + "Казакова", + "Ефимова", + "Денисова", + "Громова", + "Фомина", + "Давыдова", + "Мельникова", + "Щербакова", + "Блинова", + "Колесникова", + "Карпова", + "Афанасьева", + "Власова", + "Маслова", + "Исакова", + "Тихонова", + "Аксенова", + "Гаврилова", + "Родионова", + "Котова", + "Горбунова", + "Кудряшова", + "Быкова", + "Зуева", + "Третьякова", + "Савельева", + "Панова", + "Рыбакова", + "Суворова", + "Абрамова", + "Воронова", + "Мухина", + "Архипова", + "Трофимова", + "Мартынова", + "Емельянова", + "Горшкова", + "Чернова", + "Овчинникова", + "Селезнева", + "Панфилова", + "Копылова", + "Михеева", + "Галкина", + "Назарова", + "Лобанова", + "Лукина", + "Белякова", + "Потапова", + "Некрасова", + "Хохлова", + "Жданова", + "Наумова", + "Шилова", + "Воронцова", + "Ермакова", + "Дроздова", + "Игнатьева", + "Савина", + "Логинова", + "Сафонова", + "Капустина", + "Кириллова", + "Моисеева", + "Елисеева", + "Кошелева", + "Костина", + "Горбачева", + "Орехова", + "Ефремова", + "Исаева", + "Евдокимова", + "Калашникова", + "Кабанова", + "Носкова", + "Юдина", + "Кулагина", + "Лапина", + "Прохорова", + "Нестерова", + "Харитонова", + "Агафонова", + "Муравьева", + "Ларионова", + "Федосеева", + "Зимина", + "Пахомова", + "Шубина", + "Игнатова", + "Филатова", + "Крюкова", + "Рогова", + "Кулакова", + "Терентьева", + "Молчанова", + "Владимирова", + "Артемьева", + "Гурьева", + "Зиновьева", + "Гришина", + "Кононова", + "Дементьева", + "Ситникова", + "Симонова", + "Мишина", + "Фадеева", + "Комиссарова", + "Мамонтова", + "Носова", + "Гуляева", + "Шарова", + "Устинова", + "Вишнякова", + "Евсеева", + "Лаврентьева", + "Брагина", + "Константинова", + "Корнилова", + "Авдеева", + "Зыкова", + "Бирюкова", + "Шарапова", + "Никонова", + "Щукина", + "Дьячкова", + "Одинцова", + "Сазонова", + "Якушева", + "Красильникова", + "Гордеева", + "Самойлова", + "Князева", + "Беспалова", + "Уварова", + "Шашкова", + "Бобылева", + "Доронина", + "Белозерова", + "Рожкова", + "Самсонова", + "Мясникова", + "Лихачева", + "Бурова", + "Сысоева", + "Фомичева", + "Русакова", + "Стрелкова", + "Гущина", + "Тетерина", + "Колобова", + "Субботина", + "Фокина", + "Блохина", + "Селиверстова", + "Пестова", + "Кондратьева", + "Силина", + "Меркушева", + "Лыткина", + "Турова" + ]; + +},{}],738:[function(require,module,exports){ + 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"); + name.female_first_name = require("./female_first_name"); + name.female_middle_name = require("./female_middle_name"); + name.female_last_name = require("./female_last_name"); + name.prefix = require("./prefix"); + name.suffix = require("./suffix"); + name.name = require("./name"); + +},{"./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"] = [ + "Александр", + "Алексей", + "Альберт", + "Анатолий", + "Андрей", + "Антон", + "Аркадий", + "Арсений", + "Артём", + "Борис", + "Вадим", + "Валентин", + "Валерий", + "Василий", + "Виктор", + "Виталий", + "Владимир", + "Владислав", + "Вячеслав", + "Геннадий", + "Георгий", + "Герман", + "Григорий", + "Даниил", + "Денис", + "Дмитрий", + "Евгений", + "Егор", + "Иван", + "Игнатий", + "Игорь", + "Илья", + "Константин", + "Лаврентий", + "Леонид", + "Лука", + "Макар", + "Максим", + "Матвей", + "Михаил", + "Никита", + "Николай", + "Олег", + "Роман", + "Семён", + "Сергей", + "Станислав", + "Степан", + "Фёдор", + "Эдуард", + "Юрий", + "Ярослав" + ]; + +},{}],741:[function(require,module,exports){ + module["exports"] = [ + "Смирнов", + "Иванов", + "Кузнецов", + "Попов", + "Соколов", + "Лебедев", + "Козлов", + "Новиков", + "Морозов", + "Петров", + "Волков", + "Соловьев", + "Васильев", + "Зайцев", + "Павлов", + "Семенов", + "Голубев", + "Виноградов", + "Богданов", + "Воробьев", + "Федоров", + "Михайлов", + "Беляев", + "Тарасов", + "Белов", + "Комаров", + "Орлов", + "Киселев", + "Макаров", + "Андреев", + "Ковалев", + "Ильин", + "Гусев", + "Титов", + "Кузьмин", + "Кудрявцев", + "Баранов", + "Куликов", + "Алексеев", + "Степанов", + "Яковлев", + "Сорокин", + "Сергеев", + "Романов", + "Захаров", + "Борисов", + "Королев", + "Герасимов", + "Пономарев", + "Григорьев", + "Лазарев", + "Медведев", + "Ершов", + "Никитин", + "Соболев", + "Рябов", + "Поляков", + "Цветков", + "Данилов", + "Жуков", + "Фролов", + "Журавлев", + "Николаев", + "Крылов", + "Максимов", + "Сидоров", + "Осипов", + "Белоусов", + "Федотов", + "Дорофеев", + "Егоров", + "Матвеев", + "Бобров", + "Дмитриев", + "Калинин", + "Анисимов", + "Петухов", + "Антонов", + "Тимофеев", + "Никифоров", + "Веселов", + "Филиппов", + "Марков", + "Большаков", + "Суханов", + "Миронов", + "Ширяев", + "Александров", + "Коновалов", + "Шестаков", + "Казаков", + "Ефимов", + "Денисов", + "Громов", + "Фомин", + "Давыдов", + "Мельников", + "Щербаков", + "Блинов", + "Колесников", + "Карпов", + "Афанасьев", + "Власов", + "Маслов", + "Исаков", + "Тихонов", + "Аксенов", + "Гаврилов", + "Родионов", + "Котов", + "Горбунов", + "Кудряшов", + "Быков", + "Зуев", + "Третьяков", + "Савельев", + "Панов", + "Рыбаков", + "Суворов", + "Абрамов", + "Воронов", + "Мухин", + "Архипов", + "Трофимов", + "Мартынов", + "Емельянов", + "Горшков", + "Чернов", + "Овчинников", + "Селезнев", + "Панфилов", + "Копылов", + "Михеев", + "Галкин", + "Назаров", + "Лобанов", + "Лукин", + "Беляков", + "Потапов", + "Некрасов", + "Хохлов", + "Жданов", + "Наумов", + "Шилов", + "Воронцов", + "Ермаков", + "Дроздов", + "Игнатьев", + "Савин", + "Логинов", + "Сафонов", + "Капустин", + "Кириллов", + "Моисеев", + "Елисеев", + "Кошелев", + "Костин", + "Горбачев", + "Орехов", + "Ефремов", + "Исаев", + "Евдокимов", + "Калашников", + "Кабанов", + "Носков", + "Юдин", + "Кулагин", + "Лапин", + "Прохоров", + "Нестеров", + "Харитонов", + "Агафонов", + "Муравьев", + "Ларионов", + "Федосеев", + "Зимин", + "Пахомов", + "Шубин", + "Игнатов", + "Филатов", + "Крюков", + "Рогов", + "Кулаков", + "Терентьев", + "Молчанов", + "Владимиров", + "Артемьев", + "Гурьев", + "Зиновьев", + "Гришин", + "Кононов", + "Дементьев", + "Ситников", + "Симонов", + "Мишин", + "Фадеев", + "Комиссаров", + "Мамонтов", + "Носов", + "Гуляев", + "Шаров", + "Устинов", + "Вишняков", + "Евсеев", + "Лаврентьев", + "Брагин", + "Константинов", + "Корнилов", + "Авдеев", + "Зыков", + "Бирюков", + "Шарапов", + "Никонов", + "Щукин", + "Дьячков", + "Одинцов", + "Сазонов", + "Якушев", + "Красильников", + "Гордеев", + "Самойлов", + "Князев", + "Беспалов", + "Уваров", + "Шашков", + "Бобылев", + "Доронин", + "Белозеров", + "Рожков", + "Самсонов", + "Мясников", + "Лихачев", + "Буров", + "Сысоев", + "Фомичев", + "Русаков", + "Стрелков", + "Гущин", + "Тетерин", + "Колобов", + "Субботин", + "Фокин", + "Блохин", + "Селиверстов", + "Пестов", + "Кондратьев", + "Силин", + "Меркушев", + "Лыткин", + "Туров" + ]; + +},{}],742:[function(require,module,exports){ + 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}", + "#{female_first_name} #{female_last_name}", + "#{female_last_name} #{female_first_name}", + "#{female_first_name} #{female_middle_name} #{female_last_name}", + "#{female_last_name} #{female_first_name} #{female_middle_name}" + ]; + +},{}],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##)###-##-##" + ]; + +},{}],747:[function(require,module,exports){ + arguments[4][47][0].apply(exports,arguments) +},{"./formats":746,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],748:[function(require,module,exports){ + module["exports"] = [ + "#", + "##", + "###" + ]; + +},{}],749:[function(require,module,exports){ + module.exports=require(49) +},{"/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", + "Bratislava I", + "Bratislava II", + "Bratislava III", + "Bratislava IV", + "Bratislava V", + "Brezno", + "Bytča", + "Čadca", + "Detva", + "Dolný Kubín", + "Dunajská Streda", + "Galanta", + "Gelnica", + "Hlohovec", + "Humenné", + "Ilava", + "Kežmarok", + "Komárno", + "Košice I", + "Košice II", + "Košice III", + "Košice IV", + "Košice-okolie", + "Krupina", + "Kysucké Nové Mesto", + "Levice", + "Levoča", + "Liptovský Mikuláš", + "Lučenec", + "Malacky", + "Martin", + "Medzilaborce", + "Michalovce", + "Myjava", + "Námestovo", + "Nitra", + "Nové Mesto n.Váhom", + "Nové Zámky", + "Partizánske", + "Pezinok", + "Piešťany", + "Poltár", + "Poprad", + "Považská Bystrica", + "Prešov", + "Prievidza", + "Púchov", + "Revúca", + "Rimavská Sobota", + "Rožňava", + "Ružomberok", + "Sabinov", + "Šaľa", + "Senec", + "Senica", + "Skalica", + "Snina", + "Sobrance", + "Spišská Nová Ves", + "Stará Ľubovňa", + "Stropkov", + "Svidník", + "Topoľčany", + "Trebišov", + "Trenčín", + "Trnava", + "Turčianske Teplice", + "Tvrdošín", + "Veľký Krtíš", + "Vranov nad Topľou", + "Žarnovica", + "Žiar nad Hronom", + "Žilina", + "Zlaté Moravce", + "Zvolen" + ]; + +},{}],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", + "Alžírsko", + "Alžírska demokratická ľudová republika", + "Andorra", + "Andorrské kniežatsvo", + "Angola", + "Angolská republika", + "Antigua a Barbuda", + "Antigua a Barbuda", + "Argentína", + "Argentínska republika", + "Arménsko", + "Arménska republika", + "Austrália", + "Austrálsky zväz", + "Azerbajdžan", + "Azerbajdžanská republika", + "Bahamy", + "Bahamské spoločenstvo", + "Bahrajn", + "Bahrajnské kráľovstvo", + "Bangladéš", + "Bangladéšska ľudová republika", + "Barbados", + "Barbados", + "Belgicko", + "Belgické kráľovstvo", + "Belize", + "Belize", + "Benin", + "Beninská republika", + "Bhután", + "Bhutánske kráľovstvo", + "Bielorusko", + "Bieloruská republika", + "Bolívia", + "Bolívijská republika", + "Bosna a Hercegovina", + "Republika Bosny a Hercegoviny", + "Botswana", + "Botswanská republika", + "Brazília", + "Brazílska federatívna republika", + "Brunej", + "Brunejský sultanát", + "Bulharsko", + "Bulharská republika", + "Burkina Faso", + "Burkina Faso", + "Burundi", + "Burundská republika", + "Cyprus", + "Cyperská republika", + "Čad", + "Republika Čad", + "Česko", + "Česká republika", + "Čína", + "Čínska ľudová republika", + "Dánsko", + "Dánsko kráľovstvo", + "Dominika", + "Spoločenstvo Dominika", + "Dominikánska republika", + "Dominikánska republika", + "Džibutsko", + "Džibutská republika", + "Egypt", + "Egyptská arabská republika", + "Ekvádor", + "Ekvádorská republika", + "Eritrea", + "Eritrejský štát", + "Estónsko", + "Estónska republika", + "Etiópia", + "Etiópska federatívna demokratická republika", + "Fidži", + "Republika ostrovy Fidži", + "Filipíny", + "Filipínska republika", + "Fínsko", + "Fínska republika", + "Francúzsko", + "Francúzska republika", + "Gabon", + "Gabonská republika", + "Gambia", + "Gambijská republika", + "Ghana", + "Ghanská republika", + "Grécko", + "Helénska republika", + "Grenada", + "Grenada", + "Gruzínsko", + "Gruzínsko", + "Guatemala", + "Guatemalská republika", + "Guinea", + "Guinejská republika", + "Guinea-Bissau", + "Republika Guinea-Bissau", + "Guayana", + "Guayanská republika", + "Haiti", + "Republika Haiti", + "Holandsko", + "Holandské kráľovstvo", + "Honduras", + "Honduraská republika", + "Chile", + "Čílska republika", + "Chorvátsko", + "Chorvátska republika", + "India", + "Indická republika", + "Indonézia", + "Indonézska republika", + "Irak", + "Iracká republika", + "Irán", + "Iránska islamská republika", + "Island", + "Islandská republika", + "Izrael", + "Štát Izrael", + "Írsko", + "Írska republika", + "Jamajka", + "Jamajka", + "Japonsko", + "Japonsko", + "Jemen", + "Jemenská republika", + "Jordánsko", + "Jordánske hášimovské kráľovstvo", + "Južná Afrika", + "Juhoafrická republika", + "Kambodža", + "Kambodžské kráľovstvo", + "Kamerun", + "Kamerunská republika", + "Kanada", + "Kanada", + "Kapverdy", + "Kapverdská republika", + "Katar", + "Štát Katar", + "Kazachstan", + "Kazašská republika", + "Keňa", + "Kenská republika", + "Kirgizsko", + "Kirgizská republika", + "Kiribati", + "Kiribatská republika", + "Kolumbia", + "Kolumbijská republika", + "Komory", + "Komorská únia", + "Kongo", + "Konžská demokratická republika", + "Kongo (\"Brazzaville\")", + "Konžská republika", + "Kórea (\"Južná\")", + "Kórejská republika", + "Kórea (\"Severná\")", + "Kórejská ľudovodemokratická republika", + "Kostarika", + "Kostarická republika", + "Kuba", + "Kubánska republika", + "Kuvajt", + "Kuvajtský štát", + "Laos", + "Laoská ľudovodemokratická republika", + "Lesotho", + "Lesothské kráľovstvo", + "Libanon", + "Libanonská republika", + "Libéria", + "Libérijská republika", + "Líbya", + "Líbyjská arabská ľudová socialistická džamáhírija", + "Lichtenštajnsko", + "Lichtenštajnské kniežatstvo", + "Litva", + "Litovská republika", + "Lotyšsko", + "Lotyšská republika", + "Luxembursko", + "Luxemburské veľkovojvodstvo", + "Macedónsko", + "Macedónska republika", + "Madagaskar", + "Madagaskarská republika", + "Maďarsko", + "Maďarská republika", + "Malajzia", + "Malajzia", + "Malawi", + "Malawijská republika", + "Maldivy", + "Maldivská republika", + "Mali", + "Malijská republika", + "Malta", + "Malta", + "Maroko", + "Marocké kráľovstvo", + "Marshallove ostrovy", + "Republika Marshallových ostrovy", + "Mauritánia", + "Mauritánska islamská republika", + "Maurícius", + "Maurícijská republika", + "Mexiko", + "Spojené štáty mexické", + "Mikronézia", + "Mikronézske federatívne štáty", + "Mjanmarsko", + "Mjanmarský zväz", + "Moldavsko", + "Moldavská republika", + "Monako", + "Monacké kniežatstvo", + "Mongolsko", + "Mongolsko", + "Mozambik", + "Mozambická republika", + "Namíbia", + "Namíbijská republika", + "Nauru", + "Naurská republika", + "Nemecko", + "Nemecká spolková republika", + "Nepál", + "Nepálske kráľovstvo", + "Niger", + "Nigerská republika", + "Nigéria", + "Nigérijská federatívna republika", + "Nikaragua", + "Nikaragujská republika", + "Nový Zéland", + "Nový Zéland", + "Nórsko", + "Nórske kráľovstvo", + "Omán", + "Ománsky sultanát", + "Pakistan", + "Pakistanská islamská republika", + "Palau", + "Palauská republika", + "Panama", + "Panamská republika", + "Papua-Nová Guinea", + "Nezávislý štát Papua-Nová Guinea", + "Paraguaj", + "Paraguajská republika", + "Peru", + "Peruánska republika", + "Pobrežie Slonoviny", + "Republika Pobrežie Slonoviny", + "Poľsko", + "Poľská republika", + "Portugalsko", + "Portugalská republika", + "Rakúsko", + "Rakúska republika", + "Rovníková Guinea", + "Republika Rovníková Guinea", + "Rumunsko", + "Rumunsko", + "Rusko", + "Ruská federácia", + "Rwanda", + "Rwandská republika", + "Salvádor", + "Salvádorská republika", + "Samoa", + "Nezávislý štát Samoa", + "San Maríno", + "Sanmarínska republika", + "Saudská Arábia", + "Kráľovstvo Saudskej Arábie", + "Senegal", + "Senegalská republika", + "Seychely", + "Seychelská republika", + "Sierra Leone", + "Republika Sierra Leone", + "Singapur", + "Singapurska republika", + "Slovensko", + "Slovenská republika", + "Slovinsko", + "Slovinská republika", + "Somálsko", + "Somálska demokratická republika", + "Spojené arabské emiráty", + "Spojené arabské emiráty", + "Spojené štáty americké", + "Spojené štáty americké", + "Srbsko a Čierna Hora", + "Srbsko a Čierna Hora", + "Srí Lanka", + "Demokratická socialistická republika Srí Lanka", + "Stredoafrická republika", + "Stredoafrická republika", + "Sudán", + "Sudánska republika", + "Surinam", + "Surinamská republika", + "Svazijsko", + "Svazijské kráľovstvo", + "Svätá Lucia", + "Svätá Lucia", + "Svätý Krištof a Nevis", + "Federácia Svätý Krištof a Nevis", + "Sv. Tomáš a Princov Ostrov", + "Demokratická republika Svätý Tomáš a Princov Ostrov", + "Sv. Vincent a Grenadíny", + "Svätý Vincent a Grenadíny", + "Sýria", + "Sýrska arabská republika", + "Šalamúnove ostrovy", + "Šalamúnove ostrovy", + "Španielsko", + "Španielske kráľovstvo", + "Švajčiarsko", + "Švajčiarska konfederácia", + "Švédsko", + "Švédske kráľovstvo", + "Tadžikistan", + "Tadžická republika", + "Taliansko", + "Talianska republika", + "Tanzánia", + "Tanzánijská zjednotená republika", + "Thajsko", + "Thajské kráľovstvo", + "Togo", + "Tožská republika", + "Tonga", + "Tonžské kráľovstvo", + "Trinidad a Tobago", + "Republika Trinidad a Tobago", + "Tunisko", + "Tuniská republika", + "Turecko", + "Turecká republika", + "Turkménsko", + "Turkménsko", + "Tuvalu", + "Tuvalu", + "Uganda", + "Ugandská republika", + "Ukrajina", + "Uruguaj", + "Uruguajská východná republika", + "Uzbekistan", + "Vanuatu", + "Vanuatská republika", + "Vatikán", + "Svätá Stolica", + "Veľká Británia", + "Spojené kráľovstvo Veľkej Británie a Severného Írska", + "Venezuela", + "Venezuelská bolívarovská republika", + "Vietnam", + "Vietnamská socialistická republika", + "Východný Timor", + "Demokratická republika Východný Timor", + "Zambia", + "Zambijská republika", + "Zimbabwe", + "Zimbabwianska republika" + ]; + +},{}],754:[function(require,module,exports){ + module["exports"] = [ + "Slovensko" + ]; + +},{}],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"); + address.building_number = require("./building_number"); + address.secondary_address = require("./secondary_address"); + address.postcode = require("./postcode"); + address.state = require("./state"); + address.state_abbr = require("./state_abbr"); + address.time_zone = require("./time_zone"); + address.city_name = require("./city_name"); + 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":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"] = [ + "#####", + "### ##", + "## ###" + ]; + +},{}],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", + "Alejová", + "Alešova", + "Alibernetová", + "Alžbetínska", + "Alžbety Gwerkovej", + "Ambroseho", + "Ambrušova", + "Americká", + "Americké námestie", + "Americké námestie", + "Andreja Mráza", + "Andreja Plávku", + "Andrusovova", + "Anenská", + "Anenská", + "Antolská", + "Astronomická", + "Astrová", + "Azalková", + "Azovská", + "Babuškova", + "Bachova", + "Bajkalská", + "Bajkalská", + "Bajkalská", + "Bajkalská", + "Bajkalská", + "Bajkalská", + "Bajzova", + "Bancíkovej", + "Banícka", + "Baníkova", + "Banskobystrická", + "Banšelova", + "Bardejovská", + "Bartókova", + "Bartoňova", + "Bartoškova", + "Baštová", + "Bazová", + "Bažantia", + "Beblavého", + "Beckovská", + "Bedľová", + "Belániková", + "Belehradská", + "Belinského", + "Belopotockého", + "Beňadická", + "Bencúrova", + "Benediktiho", + "Beniakova", + "Bernolákova", + "Beskydská", + "Betliarska", + "Bezručova", + "Biela", + "Bielkova", + "Björnsonova", + "Blagoevova", + "Blatnická", + "Blumentálska", + "Blyskáčová", + "Bočná", + "Bohrova", + "Bohúňova", + "Bojnická", + "Borodáčova", + "Borská", + "Bosákova", + "Botanická", + "Bottova", + "Boženy Němcovej", + "Bôrik", + "Bradáčova", + "Bradlianska", + "Brančská", + "Bratská", + "Brestová", + "Brezovská", + "Briežky", + "Brnianska", + "Brodná", + "Brodská", + "Broskyňová", + "Břeclavská", + "Budatínska", + "Budatínska", + "Budatínska", + "Búdkova cesta", + "Budovateľská", + "Budyšínska", + "Budyšínska", + "Buková", + "Bukureštská", + "Bulharská", + "Bulíkova", + "Bystrého", + "Bzovícka", + "Cablkova", + "Cesta na Červený most", + "Cesta na Červený most", + "Cesta na Senec", + "Cikkerova", + "Cintorínska", + "Cintulova", + "Cukrová", + "Cyrilova", + "Čajakova", + "Čajkovského", + "Čaklovská", + "Čalovská", + "Čapajevova", + "Čapkova", + "Čárskeho", + "Čavojského", + "Čečinová", + "Čelakovského", + "Čerešňová", + "Černyševského", + "Červeňova", + "Česká", + "Československých par", + "Čipkárska", + "Čmelíkova", + "Čmeľovec", + "Čulenova", + "Daliborovo námestie", + "Dankovského", + "Dargovská", + "Ďatelinová", + "Daxnerovo námestie", + "Devínska cesta", + "Dlhé diely I.", + "Dlhé diely II.", + "Dlhé diely III.", + "Dobrovičova", + "Dobrovičova", + "Dobrovského", + "Dobšinského", + "Dohnalova", + "Dohnányho", + "Doležalova", + "Dolná", + "Dolnozemská cesta", + "Domkárska", + "Domové role", + "Donnerova", + "Donovalova", + "Dostojevského rad", + "Dr. Vladimíra Clemen", + "Drevená", + "Drieňová", + "Drieňová", + "Drieňová", + "Drotárska cesta", + "Drotárska cesta", + "Drotárska cesta", + "Družicová", + "Družstevná", + "Dubnická", + "Dubová", + "Dúbravská cesta", + "Dudova", + "Dulovo námestie", + "Dulovo námestie", + "Dunajská", + "Dvořákovo nábrežie", + "Edisonova", + "Einsteinova", + "Elektrárenská", + "Exnárova", + "F. Kostku", + "Fadruszova", + "Fajnorovo nábrežie", + "Fándlyho", + "Farebná", + "Farská", + "Farského", + "Fazuľová", + "Fedinova", + "Ferienčíkova", + "Fialkové údolie", + "Fibichova", + "Filiálne nádražie", + "Flöglova", + "Floriánske námestie", + "Fraňa Kráľa", + "Francisciho", + "Francúzskych partizá", + "Františkánska", + "Františkánske námest", + "Furdekova", + "Furdekova", + "Gabčíkova", + "Gagarinova", + "Gagarinova", + "Gagarinova", + "Gajova", + "Galaktická", + "Galandova", + "Gallova", + "Galvaniho", + "Gašparíkova", + "Gaštanová", + "Gavlovičova", + "Gemerská", + "Gercenova", + "Gessayova", + "Gettingová", + "Godrova", + "Gogoľova", + "Goláňova", + "Gondova", + "Goralská", + "Gorazdova", + "Gorkého", + "Gregorovej", + "Grösslingova", + "Gruzínska", + "Gunduličova", + "Gusevova", + "Haanova", + "Haburská", + "Halašova", + "Hálkova", + "Hálova", + "Hamuliakova", + "Hanácka", + "Handlovská", + "Hany Meličkovej", + "Harmanecká", + "Hasičská", + "Hattalova", + "Havlíčkova", + "Havrania", + "Haydnova", + "Herlianska", + "Herlianska", + "Heydukova", + "Hlaváčikova", + "Hlavatého", + "Hlavné námestie", + "Hlboká cesta", + "Hlboká cesta", + "Hlivová", + "Hlučínska", + "Hodálova", + "Hodžovo námestie", + "Holekova", + "Holíčska", + "Hollého", + "Holubyho", + "Hontianska", + "Horárska", + "Horné Židiny", + "Horská", + "Horská", + "Hrad", + "Hradné údolie", + "Hrachová", + "Hraničná", + "Hrebendova", + "Hríbová", + "Hriňovská", + "Hrobákova", + "Hrobárska", + "Hroboňova", + "Hudecova", + "Humenské námestie", + "Hummelova", + "Hurbanovo námestie", + "Hurbanovo námestie", + "Hviezdoslavovo námes", + "Hýrošova", + "Chalupkova", + "Chemická", + "Chlumeckého", + "Chorvátska", + "Chorvátska", + "Iľjušinova", + "Ilkovičova", + "Inovecká", + "Inovecká", + "Iskerníková", + "Ivana Horvátha", + "Ivánska cesta", + "J.C.Hronského", + "Jabloňová", + "Jadrová", + "Jakabova", + "Jakubovo námestie", + "Jamnického", + "Jána Stanislava", + "Janáčkova", + "Jančova", + "Janíkove role", + "Jankolova", + "Jánošíkova", + "Jánoškova", + "Janotova", + "Jánska", + "Jantárová cesta", + "Jarabinková", + "Jarná", + "Jaroslavova", + "Jarošova", + "Jaseňová", + "Jasná", + "Jasovská", + "Jastrabia", + "Jašíkova", + "Javorinská", + "Javorová", + "Jazdecká", + "Jedlíkova", + "Jégého", + "Jelačičova", + "Jelenia", + "Jesenná", + "Jesenského", + "Jiráskova", + "Jiskrova", + "Jozefská", + "Junácka", + "Jungmannova", + "Jurigovo námestie", + "Jurovského", + "Jurská", + "Justičná", + "K lomu", + "K Železnej studienke", + "Kalinčiakova", + "Kamenárska", + "Kamenné námestie", + "Kapicova", + "Kapitulská", + "Kapitulský dvor", + "Kapucínska", + "Kapušianska", + "Karadžičova", + "Karadžičova", + "Karadžičova", + "Karadžičova", + "Karloveská", + "Karloveské rameno", + "Karpatská", + "Kašmírska", + "Kaštielska", + "Kaukazská", + "Kempelenova", + "Kežmarské námestie", + "Kladnianska", + "Klariská", + "Kláštorská", + "Klatovská", + "Klatovská", + "Klemensova", + "Klincová", + "Klobučnícka", + "Klokočova", + "Kľukatá", + "Kmeťovo námestie", + "Koceľova", + "Kočánkova", + "Kohútova", + "Kolárska", + "Kolískova", + "Kollárovo námestie", + "Kollárovo námestie", + "Kolmá", + "Komárňanská", + "Komárnická", + "Komárnická", + "Komenského námestie", + "Kominárska", + "Komonicová", + "Konopná", + "Konvalinková", + "Konventná", + "Kopanice", + "Kopčianska", + "Koperníkova", + "Korabinského", + "Koreničova", + "Kostlivého", + "Kostolná", + "Košická", + "Košická", + "Košická", + "Kováčska", + "Kovorobotnícka", + "Kozia", + "Koziarka", + "Kozmonautická", + "Krajná", + "Krakovská", + "Kráľovské údolie", + "Krasinského", + "Kraskova", + "Krásna", + "Krásnohorská", + "Krasovského", + "Krátka", + "Krčméryho", + "Kremnická", + "Kresánkova", + "Krivá", + "Križkova", + "Krížna", + "Krížna", + "Krížna", + "Krížna", + "Krmanova", + "Krompašská", + "Krupinská", + "Krupkova", + "Kubániho", + "Kubínska", + "Kuklovská", + "Kukučínova", + "Kukuričná", + "Kulíškova", + "Kultúrna", + "Kupeckého", + "Kúpeľná", + "Kutlíkova", + "Kutuzovova", + "Kuzmányho", + "Kvačalova", + "Kvetná", + "Kýčerského", + "Kyjevská", + "Kysucká", + "Laborecká", + "Lackova", + "Ladislava Sáru", + "Ľadová", + "Lachova", + "Ľaliová", + "Lamačská cesta", + "Lamačská cesta", + "Lamanského", + "Landererova", + "Langsfeldova", + "Ľanová", + "Laskomerského", + "Laučekova", + "Laurinská", + "Lazaretská", + "Lazaretská", + "Legerského", + "Legionárska", + "Legionárska", + "Lehockého", + "Lehockého", + "Lenardova", + "Lermontovova", + "Lesná", + "Leškova", + "Letecká", + "Letisko M.R.Štefánik", + "Letná", + "Levárska", + "Levická", + "Levočská", + "Lidická", + "Lietavská", + "Lichardova", + "Lipová", + "Lipovinová", + "Liptovská", + "Listová", + "Líščie nivy", + "Líščie údolie", + "Litovská", + "Lodná", + "Lombardiniho", + "Lomonosovova", + "Lopenícka", + "Lovinského", + "Ľubietovská", + "Ľubinská", + "Ľubľanská", + "Ľubochnianska", + "Ľubovnianska", + "Lúčna", + "Ľudové námestie", + "Ľudovíta Fullu", + "Luhačovická", + "Lužická", + "Lužná", + "Lýcejná", + "Lykovcová", + "M. Hella", + "Magnetová", + "Macharova", + "Majakovského", + "Majerníkova", + "Májkova", + "Májová", + "Makovického", + "Malá", + "Malé pálenisko", + "Malinová", + "Malý Draždiak", + "Malý trh", + "Mamateyova", + "Mamateyova", + "Mánesovo námestie", + "Mariánska", + "Marie Curie-Sklodows", + "Márie Medveďovej", + "Markova", + "Marótyho", + "Martákovej", + "Martinčekova", + "Martinčekova", + "Martinengova", + "Martinská", + "Mateja Bela", + "Matejkova", + "Matičná", + "Matúšova", + "Medená", + "Medzierka", + "Medzilaborecká", + "Merlotová", + "Mesačná", + "Mestská", + "Meteorová", + "Metodova", + "Mickiewiczova", + "Mierová", + "Michalská", + "Mikovíniho", + "Mikulášska", + "Miletičova", + "Miletičova", + "Mišíkova", + "Mišíkova", + "Mišíkova", + "Mliekárenská", + "Mlynarovičova", + "Mlynská dolina", + "Mlynská dolina", + "Mlynská dolina", + "Mlynské luhy", + "Mlynské nivy", + "Mlynské nivy", + "Mlynské nivy", + "Mlynské nivy", + "Mlynské nivy", + "Mlyny", + "Modranská", + "Mojmírova", + "Mokráň záhon", + "Mokrohájska cesta", + "Moldavská", + "Molecova", + "Moravská", + "Moskovská", + "Most SNP", + "Mostová", + "Mošovského", + "Motýlia", + "Moyzesova", + "Mozartova", + "Mraziarenská", + "Mudroňova", + "Mudroňova", + "Mudroňova", + "Muchovo námestie", + "Murgašova", + "Muškátová", + "Muštová", + "Múzejná", + "Myjavská", + "Mýtna", + "Mýtna", + "Na Baránku", + "Na Brezinách", + "Na Hrebienku", + "Na Kalvárii", + "Na Kampárke", + "Na kopci", + "Na križovatkách", + "Na lánoch", + "Na paši", + "Na piesku", + "Na Riviére", + "Na Sitine", + "Na Slavíne", + "Na stráni", + "Na Štyridsiatku", + "Na úvrati", + "Na vŕšku", + "Na výslní", + "Nábělkova", + "Nábrežie arm. gen. L", + "Nábrežná", + "Nad Dunajom", + "Nad lomom", + "Nad lúčkami", + "Nad lúčkami", + "Nad ostrovom", + "Nad Sihoťou", + "Námestie 1. mája", + "Námestie Alexandra D", + "Námestie Biely kríž", + "Námestie Hraničiarov", + "Námestie Jána Pavla", + "Námestie Ľudovíta Št", + "Námestie Martina Ben", + "Nám. M.R.Štefánika", + "Námestie slobody", + "Námestie slobody", + "Námestie SNP", + "Námestie SNP", + "Námestie sv. Františ", + "Narcisová", + "Nedbalova", + "Nekrasovova", + "Neronetová", + "Nerudova", + "Nevädzová", + "Nezábudková", + "Niťová", + "Nitrianska", + "Nížinná", + "Nobelova", + "Nobelovo námestie", + "Nová", + "Nová Rožňavská", + "Novackého", + "Nové pálenisko", + "Nové záhrady I", + "Nové záhrady II", + "Nové záhrady III", + "Nové záhrady IV", + "Nové záhrady V", + "Nové záhrady VI", + "Nové záhrady VII", + "Novinárska", + "Novobanská", + "Novohradská", + "Novosvetská", + "Novosvetská", + "Novosvetská", + "Obežná", + "Obchodná", + "Očovská", + "Odbojárov", + "Odborárska", + "Odborárske námestie", + "Odborárske námestie", + "Ohnicová", + "Okánikova", + "Okružná", + "Olbrachtova", + "Olejkárska", + "Ondavská", + "Ondrejovova", + "Oravská", + "Orechová cesta", + "Orechový rad", + "Oriešková", + "Ormisova", + "Osadná", + "Ostravská", + "Ostredková", + "Osuského", + "Osvetová", + "Otonelská", + "Ovručská", + "Ovsištské námestie", + "Pajštúnska", + "Palackého", + "Palárikova", + "Palárikova", + "Pálavská", + "Palisády", + "Palisády", + "Palisády", + "Palkovičova", + "Panenská", + "Pankúchova", + "Panónska cesta", + "Panská", + "Papánkovo námestie", + "Papraďová", + "Páričkova", + "Parková", + "Partizánska", + "Pasienky", + "Paulínyho", + "Pavlovičova", + "Pavlovova", + "Pavlovská", + "Pažického", + "Pažítková", + "Pečnianska", + "Pernecká", + "Pestovateľská", + "Peterská", + "Petzvalova", + "Pezinská", + "Piesočná", + "Piešťanská", + "Pifflova", + "Pilárikova", + "Pionierska", + "Pivoňková", + "Planckova", + "Planét", + "Plátenícka", + "Pluhová", + "Plynárenská", + "Plzenská", + "Pobrežná", + "Pod Bôrikom", + "Pod Kalváriou", + "Pod lesom", + "Pod Rovnicami", + "Pod vinicami", + "Podhorského", + "Podjavorinskej", + "Podlučinského", + "Podniková", + "Podtatranského", + "Pohronská", + "Polárna", + "Poloreckého", + "Poľná", + "Poľská", + "Poludníková", + "Porubského", + "Poštová", + "Považská", + "Povraznícka", + "Povraznícka", + "Pražská", + "Predstaničné námesti", + "Prepoštská", + "Prešernova", + "Prešovská", + "Prešovská", + "Prešovská", + "Pri Bielom kríži", + "Pri dvore", + "Pri Dynamitke", + "Pri Habánskom mlyne", + "Pri hradnej studni", + "Pri seči", + "Pri Starej Prachárni", + "Pri Starom háji", + "Pri Starom Mýte", + "Pri strelnici", + "Pri Suchom mlyne", + "Pri zvonici", + "Pribinova", + "Pribinova", + "Pribinova", + "Pribišova", + "Pribylinská", + "Priečna", + "Priekopy", + "Priemyselná", + "Priemyselná", + "Prievozská", + "Prievozská", + "Prievozská", + "Príkopova", + "Primaciálne námestie", + "Prístav", + "Prístavná", + "Prokofievova", + "Prokopa Veľkého", + "Prokopova", + "Prúdová", + "Prvosienková", + "Púpavová", + "Pustá", + "Puškinova", + "Račianska", + "Račianska", + "Račianske mýto", + "Radarová", + "Rádiová", + "Radlinského", + "Radničná", + "Radničné námestie", + "Radvanská", + "Rajská", + "Raketová", + "Rákosová", + "Rastislavova", + "Rázusovo nábrežie", + "Repná", + "Rešetkova", + "Revolučná", + "Révová", + "Revúcka", + "Rezedová", + "Riazanská", + "Riazanská", + "Ribayová", + "Riečna", + "Rigeleho", + "Rízlingová", + "Riznerova", + "Robotnícka", + "Romanova", + "Röntgenova", + "Rosná", + "Rovná", + "Rovniankova", + "Rovníková", + "Rozmarínová", + "Rožňavská", + "Rožňavská", + "Rožňavská", + "Rubinsteinova", + "Rudnayovo námestie", + "Rumančeková", + "Rusovská cesta", + "Ružičková", + "Ružinovská", + "Ružinovská", + "Ružinovská", + "Ružomberská", + "Ružová dolina", + "Ružová dolina", + "Rybárska brána", + "Rybné námestie", + "Rýdziková", + "Sabinovská", + "Sabinovská", + "Sad Janka Kráľa", + "Sadová", + "Sartorisova", + "Sasinkova", + "Seberíniho", + "Sečovská", + "Sedlárska", + "Sedmokrásková", + "Segnerova", + "Sekulská", + "Semianova", + "Senická", + "Senná", + "Schillerova", + "Schody pri starej vo", + "Sibírska", + "Sienkiewiczova", + "Silvánska", + "Sinokvetná", + "Skalická cesta", + "Skalná", + "Sklenárova", + "Sklenárska", + "Sládkovičova", + "Sladová", + "Slávičie údolie", + "Slavín", + "Slepá", + "Sliačska", + "Sliezska", + "Slivková", + "Slnečná", + "Slovanská", + "Slovinská", + "Slovnaftská", + "Slowackého", + "Smetanova", + "Smikova", + "Smolenická", + "Smolnícka", + "Smrečianska", + "Soferove schody", + "Socháňova", + "Sokolská", + "Solivarská", + "Sološnická", + "Somolického", + "Somolického", + "Sosnová", + "Spišská", + "Spojná", + "Spoločenská", + "Sputniková", + "Sreznevského", + "Srnčia", + "Stachanovská", + "Stálicová", + "Staničná", + "Stará Černicová", + "Stará Ivánska cesta", + "Stará Prievozská", + "Stará Vajnorská", + "Stará vinárska", + "Staré Grunty", + "Staré ihrisko", + "Staré záhrady", + "Starhradská", + "Starohájska", + "Staromestská", + "Staroturský chodník", + "Staviteľská", + "Stodolova", + "Stoklasová", + "Strakova", + "Strážnická", + "Strážny dom", + "Strečnianska", + "Stredná", + "Strelecká", + "Strmá cesta", + "Strojnícka", + "Stropkovská", + "Struková", + "Studená", + "Stuhová", + "Súbežná", + "Súhvezdná", + "Suché mýto", + "Suchohradská", + "Súkennícka", + "Súľovská", + "Sumbalova", + "Súmračná", + "Súťažná", + "Svätého Vincenta", + "Svätoplukova", + "Svätoplukova", + "Svätovojtešská", + "Svetlá", + "Svíbová", + "Svidnícka", + "Svoradova", + "Svrčia", + "Syslia", + "Šafárikovo námestie", + "Šafárikovo námestie", + "Šafránová", + "Šagátova", + "Šalviová", + "Šancová", + "Šancová", + "Šancová", + "Šancová", + "Šándorova", + "Šarišská", + "Šášovská", + "Šaštínska", + "Ševčenkova", + "Šintavská", + "Šípková", + "Škarniclova", + "Školská", + "Škovránčia", + "Škultétyho", + "Šoltésovej", + "Špieszova", + "Špitálska", + "Športová", + "Šrobárovo námestie", + "Šťastná", + "Štedrá", + "Štefánikova", + "Štefánikova", + "Štefánikova", + "Štefanovičova", + "Štefunkova", + "Štetinova", + "Štiavnická", + "Štúrova", + "Štyndlova", + "Šulekova", + "Šulekova", + "Šulekova", + "Šumavská", + "Šuňavcova", + "Šustekova", + "Švabinského", + "Tabaková", + "Tablicova", + "Táborská", + "Tajovského", + "Tallerova", + "Tehelná", + "Technická", + "Tekovská", + "Telocvičná", + "Tematínska", + "Teplická", + "Terchovská", + "Teslova", + "Tetmayerova", + "Thurzova", + "Tichá", + "Tilgnerova", + "Timravina", + "Tobrucká", + "Tokajícka", + "Tolstého", + "Tománkova", + "Tomášikova", + "Tomášikova", + "Tomášikova", + "Tomášikova", + "Tomášikova", + "Topoľčianska", + "Topoľová", + "Továrenská", + "Trebišovská", + "Trebišovská", + "Trebišovská", + "Trenčianska", + "Treskoňova", + "Trnavská cesta", + "Trnavská cesta", + "Trnavská cesta", + "Trnavská cesta", + "Trnavská cesta", + "Trnavské mýto", + "Tŕňová", + "Trojdomy", + "Tučkova", + "Tupolevova", + "Turbínova", + "Turčianska", + "Turnianska", + "Tvarožkova", + "Tylova", + "Tyršovo nábrežie", + "Údernícka", + "Údolná", + "Uhorková", + "Ukrajinská", + "Ulica 29. augusta", + "Ulica 29. augusta", + "Ulica 29. augusta", + "Ulica 29. augusta", + "Ulica Imricha Karvaš", + "Ulica Jozefa Krónera", + "Ulica Viktora Tegelh", + "Úprkova", + "Úradnícka", + "Uránová", + "Urbánkova", + "Ursínyho", + "Uršulínska", + "Úzka", + "V záhradách", + "Vajanského nábrežie", + "Vajnorská", + "Vajnorská", + "Vajnorská", + "Vajnorská", + "Vajnorská", + "Vajnorská", + "Vajnorská", + "Vajnorská", + "Vajnorská", + "Valašská", + "Valchárska", + "Vansovej", + "Vápenná", + "Varínska", + "Varšavská", + "Varšavská", + "Vavilovova", + "Vavrínova", + "Vazovova", + "Včelárska", + "Velehradská", + "Veltlínska", + "Ventúrska", + "Veterná", + "Veternicová", + "Vetvová", + "Viedenská cesta", + "Viedenská cesta", + "Vietnamská", + "Vígľašská", + "Vihorlatská", + "Viktorínova", + "Vilová", + "Vincenta Hložníka", + "Vínna", + "Vlastenecké námestie", + "Vlčkova", + "Vlčkova", + "Vlčkova", + "Vodný vrch", + "Votrubova", + "Vrábeľská", + "Vrakunská cesta", + "Vranovská", + "Vretenová", + "Vrchná", + "Vrútocká", + "Vyhliadka", + "Vyhnianska cesta", + "Vysoká", + "Vyšehradská", + "Vyšná", + "Wattova", + "Wilsonova", + "Wolkrova", + "Za Kasárňou", + "Za sokolovňou", + "Za Stanicou", + "Za tehelňou", + "Záborského", + "Zadunajská cesta", + "Záhorácka", + "Záhradnícka", + "Záhradnícka", + "Záhradnícka", + "Záhradnícka", + "Záhrebská", + "Záhrebská", + "Zálužická", + "Zámocká", + "Zámocké schody", + "Zámočnícka", + "Západná", + "Západný rad", + "Záporožská", + "Zátišie", + "Závodníkova", + "Zelená", + "Zelinárska", + "Zimná", + "Zlaté piesky", + "Zlaté schody", + "Znievska", + "Zohorská", + "Zochova", + "Zrinského", + "Zvolenská", + "Žabí majer", + "Žabotova", + "Žehrianska", + "Železná", + "Železničiarska", + "Žellova", + "Žiarska", + "Židovská", + "Žilinská", + "Žilinská", + "Živnostenská", + "Žižkova", + "Župné námestie" + ]; + +},{}],761:[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"] = [ + "#{street}" + ]; + +},{}],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", + "robust", + "revolutionary", + "scalable", + "leading-edge", + "innovative", + "intuitive", + "strategic", + "e-business", + "mission-critical", + "sticky", + "one-to-one", + "24/7", + "end-to-end", + "global", + "B2B", + "B2C", + "granular", + "frictionless", + "virtual", + "viral", + "dynamic", + "24/365", + "best-of-breed", + "killer", + "magnetic", + "bleeding-edge", + "web-enabled", + "interactive", + "dot-com", + "sexy", + "back-end", + "real-time", + "efficient", + "front-end", + "distributed", + "seamless", + "extensible", + "turn-key", + "world-class", + "open-source", + "cross-platform", + "cross-media", + "synergistic", + "bricks-and-clicks", + "out-of-the-box", + "enterprise", + "integrated", + "impactful", + "wireless", + "transparent", + "next-generation", + "cutting-edge", + "user-centric", + "visionary", + "customized", + "ubiquitous", + "plug-and-play", + "collaborative", + "compelling", + "holistic", + "rich", + "synergies", + "web-readiness", + "paradigms", + "markets", + "partnerships", + "infrastructures", + "platforms", + "initiatives", + "channels", + "eyeballs", + "communities", + "ROI", + "solutions", + "e-tailers", + "e-services", + "action-items", + "portals", + "niches", + "technologies", + "content", + "vortals", + "supply-chains", + "convergence", + "relationships", + "architectures", + "interfaces", + "e-markets", + "e-commerce", + "systems", + "bandwidth", + "infomediaries", + "models", + "mindshare", + "deliverables", + "users", + "schemas", + "networks", + "applications", + "metrics", + "e-business", + "functionalities", + "experiences", + "web services", + "methodologies" + ]; + +},{}],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":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}" + ]; + +},{}],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." + ]; + +},{}],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":755,"./company":768,"./internet":775,"./lorem":776,"./name":781,"./phone_number":789}],773:[function(require,module,exports){ + module["exports"] = [ + "sk", + "com", + "net", + "eu", + "org" + ]; + +},{}],774:[function(require,module,exports){ + module["exports"] = [ + "gmail.com", + "zoznam.sk", + "azet.sk" + ]; + +},{}],775:[function(require,module,exports){ + arguments[4][37][0].apply(exports,arguments) +},{"./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}],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.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"); + +},{"./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", + "Rastislav", + "Radovan", + "Dobroslav", + "Dalibor", + "Vincent", + "Miloš", + "Timotej", + "Gejza", + "Bohuš", + "Alfonz", + "Gašpar", + "Emil", + "Erik", + "Blažej", + "Zdenko", + "Dezider", + "Arpád", + "Valentín", + "Pravoslav", + "Jaromír", + "Roman", + "Matej", + "Frederik", + "Viktor", + "Alexander", + "Radomír", + "Albín", + "Bohumil", + "Kazimír", + "Fridrich", + "Radoslav", + "Tomáš", + "Alan", + "Branislav", + "Bruno", + "Gregor", + "Vlastimil", + "Boleslav", + "Eduard", + "Jozef", + "Víťazoslav", + "Blahoslav", + "Beňadik", + "Adrián", + "Gabriel", + "Marián", + "Emanuel", + "Miroslav", + "Benjamín", + "Hugo", + "Richard", + "Izidor", + "Zoltán", + "Albert", + "Igor", + "Július", + "Aleš", + "Fedor", + "Rudolf", + "Valér", + "Marcel", + "Ervín", + "Slavomír", + "Vojtech", + "Juraj", + "Marek", + "Jaroslav", + "Žigmund", + "Florián", + "Roland", + "Pankrác", + "Servác", + "Bonifác", + "Svetozár", + "Bernard", + "Júlia", + "Urban", + "Dušan", + "Viliam", + "Ferdinand", + "Norbert", + "Róbert", + "Medard", + "Zlatko", + "Anton", + "Vasil", + "Vít", + "Adolf", + "Vratislav", + "Alfréd", + "Alojz", + "Ján", + "Tadeáš", + "Ladislav", + "Peter", + "Pavol", + "Miloslav", + "Prokop", + "Cyril", + "Metod", + "Patrik", + "Oliver", + "Ivan", + "Kamil", + "Henrich", + "Drahomír", + "Bohuslav", + "Iľja", + "Daniel", + "Vladimír", + "Jakub", + "Krištof", + "Ignác", + "Gustáv", + "Jerguš", + "Dominik", + "Oskar", + "Vavrinec", + "Ľubomír", + "Mojmír", + "Leonard", + "Tichomír", + "Filip", + "Bartolomej", + "Ľudovít", + "Samuel", + "Augustín", + "Belo", + "Oleg", + "Bystrík", + "Ctibor", + "Ľudomil", + "Konštantín", + "Ľuboslav", + "Matúš", + "Móric", + "Ľuboš", + "Ľubor", + "Vladislav", + "Cyprián", + "Václav", + "Michal", + "Jarolím", + "Arnold", + "Levoslav", + "František", + "Dionýz", + "Maximilián", + "Koloman", + "Boris", + "Lukáš", + "Kristián", + "Vendelín", + "Sergej", + "Aurel", + "Demeter", + "Denis", + "Hubert", + "Karol", + "Imrich", + "René", + "Bohumír", + "Teodor", + "Tibor", + "Maroš", + "Martin", + "Svätopluk", + "Stanislav", + "Leopold", + "Eugen", + "Félix", + "Klement", + "Kornel", + "Milan", + "Vratko", + "Ondrej", + "Andrej", + "Edmund", + "Oldrich", + "Oto", + "Mikuláš", + "Ambróz", + "Radúz", + "Bohdan", + "Adam", + "Štefan", + "Dávid", + "Silvester" + ]; + +},{}],783:[function(require,module,exports){ + module["exports"] = [ + "Antal", + "Babka", + "Bahna", + "Bahno", + "Baláž", + "Baran", + "Baranka", + "Bartovič", + "Bartoš", + "Bača", + "Bernolák", + "Beňo", + "Bicek", + "Bielik", + "Blaho", + "Bondra", + "Bosák", + "Boška", + "Brezina", + "Bukovský", + "Chalupka", + "Chudík", + "Cibula", + "Cibulka", + "Cibuľa", + "Cyprich", + "Cíger", + "Danko", + "Daňko", + "Daňo", + "Debnár", + "Dej", + "Dekýš", + "Doležal", + "Dočolomanský", + "Droppa", + "Dubovský", + "Dudek", + "Dula", + "Dulla", + "Dusík", + "Dvonč", + "Dzurjanin", + "Dávid", + "Fabian", + "Fabián", + "Fajnor", + "Farkašovský", + "Fico", + "Filc", + "Filip", + "Finka", + "Ftorek", + "Gašpar", + "Gašparovič", + "Gocník", + "Gregor", + "Greguš", + "Grznár", + "Hablák", + "Habšuda", + "Halda", + "Haluška", + "Halák", + "Hanko", + "Hanzal", + "Haščák", + "Heretik", + "Hečko", + "Hlaváček", + "Hlinka", + "Holub", + "Holuby", + "Hossa", + "Hoza", + "Hraško", + "Hric", + "Hrmo", + "Hrušovský", + "Huba", + "Ihnačák", + "Janeček", + "Janoška", + "Jantošovič", + "Janík", + "Janček", + "Jedľovský", + "Jendek", + "Jonata", + "Jurina", + "Jurkovič", + "Jurík", + "Jánošík", + "Kafenda", + "Kaliský", + "Karul", + "Keníž", + "Klapka", + "Kmeť", + "Kolesár", + "Kollár", + "Kolnik", + "Kolník", + "Kolár", + "Korec", + "Kostka", + "Kostrec", + "Kováč", + "Kováčik", + "Koza", + "Kočiš", + "Krajíček", + "Krajči", + "Krajčo", + "Krajčovič", + "Krajčír", + "Králik", + "Krúpa", + "Kubík", + "Kyseľ", + "Kállay", + "Labuda", + "Lepšík", + "Lipták", + "Lisický", + "Lubina", + "Lukáč", + "Lupták", + "Líška", + "Madej", + "Majeský", + "Malachovský", + "Malíšek", + "Mamojka", + "Marcinko", + "Marián", + "Masaryk", + "Maslo", + "Matiaško", + "Medveď", + "Melcer", + "Mečiar", + "Michalík", + "Mihalik", + "Mihál", + "Mihálik", + "Mikloško", + "Mikulík", + "Mikuš", + "Mikúš", + "Milota", + "Mináč", + "Mišík", + "Mojžiš", + "Mokroš", + "Mora", + "Moravčík", + "Mydlo", + "Nemec", + "Nitra", + "Novák", + "Obšut", + "Ondruš", + "Otčenáš", + "Pauko", + "Pavlikovský", + "Pavúk", + "Pašek", + "Paška", + "Paško", + "Pelikán", + "Petrovický", + "Petruška", + "Peško", + "Plch", + "Plekanec", + "Podhradský", + "Podkonický", + "Poliak", + "Pupák", + "Rak", + "Repiský", + "Romančík", + "Rus", + "Ružička", + "Rybníček", + "Rybár", + "Rybárik", + "Samson", + "Sedliak", + "Senko", + "Sklenka", + "Skokan", + "Skutecký", + "Slašťan", + "Sloboda", + "Slobodník", + "Slota", + "Slovák", + "Smrek", + "Stodola", + "Straka", + "Strnisko", + "Svrbík", + "Sámel", + "Sýkora", + "Tatar", + "Tatarka", + "Tatár", + "Tatárka", + "Thomka", + "Tomeček", + "Tomka", + "Tomko", + "Truben", + "Turčok", + "Uram", + "Urblík", + "Vajcík", + "Vajda", + "Valach", + "Valachovič", + "Valent", + "Valuška", + "Vanek", + "Vesel", + "Vicen", + "Višňovský", + "Vlach", + "Vojtek", + "Vydarený", + "Zajac", + "Zima", + "Zimka", + "Záborský", + "Zúbrik", + "Čapkovič", + "Čaplovič", + "Čarnogurský", + "Čierny", + "Čobrda", + "Ďaďo", + "Ďurica", + "Ďuriš", + "Šidlo", + "Šimonovič", + "Škriniar", + "Škultéty", + "Šmajda", + "Šoltés", + "Šoltýs", + "Štefan", + "Štefanka", + "Šulc", + "Šurka", + "Švehla", + "Šťastný" + ]; + +},{}],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}", + "#{man_first_name} #{man_last_name}", + "#{man_first_name} #{man_last_name}", + "#{man_first_name} #{man_last_name}", + "#{woman_first_name} #{woman_last_name}", + "#{woman_first_name} #{woman_last_name}", + "#{woman_first_name} #{woman_last_name}" + ]; + +},{}],785:[function(require,module,exports){ + module["exports"] = [ + "Ing.", + "Mgr.", + "JUDr.", + "MUDr." + ]; + +},{}],786:[function(require,module,exports){ + module["exports"] = [ + "Phd." + ]; + +},{}],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"] = [ + "09## ### ###", + "0## #### ####", + "0# #### ####", + "+421 ### ### ###" + ]; + +},{}],789:[function(require,module,exports){ + arguments[4][47][0].apply(exports,arguments) +},{"./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}" + ]; + +},{}],792:[function(require,module,exports){ + module["exports"] = [ + "Söder", + "Norr", + "Väst", + "Öster", + "Aling", + "Ar", + "Av", + "Bo", + "Br", + "Bå", + "Ek", + "En", + "Esk", + "Fal", + "Gäv", + "Göte", + "Ha", + "Helsing", + "Karl", + "Krist", + "Kram", + "Kung", + "Kö", + "Lyck", + "Ny" + ]; + +},{}],793:[function(require,module,exports){ + module["exports"] = [ + "stad", + "land", + "sås", + "ås", + "holm", + "tuna", + "sta", + "berg", + "löv", + "borg", + "mora", + "hamn", + "fors", + "köping", + "by", + "hult", + "torp", + "fred", + "vik" + ]; + +},{}],794:[function(require,module,exports){ + module["exports"] = [ + "s Väg", + "s Gata" + ]; + +},{}],795:[function(require,module,exports){ + module["exports"] = [ + "Ryssland", + "Kanada", + "Kina", + "USA", + "Brasilien", + "Australien", + "Indien", + "Argentina", + "Kazakstan", + "Algeriet", + "DR Kongo", + "Danmark", + "Färöarna", + "Grönland", + "Saudiarabien", + "Mexiko", + "Indonesien", + "Sudan", + "Libyen", + "Iran", + "Mongoliet", + "Peru", + "Tchad", + "Niger", + "Angola", + "Mali", + "Sydafrika", + "Colombia", + "Etiopien", + "Bolivia", + "Mauretanien", + "Egypten", + "Tanzania", + "Nigeria", + "Venezuela", + "Namibia", + "Pakistan", + "Moçambique", + "Turkiet", + "Chile", + "Zambia", + "Marocko", + "Västsahara", + "Burma", + "Afghanistan", + "Somalia", + "Centralafrikanska republiken", + "Sydsudan", + "Ukraina", + "Botswana", + "Madagaskar", + "Kenya", + "Frankrike", + "Franska Guyana", + "Jemen", + "Thailand", + "Spanien", + "Turkmenistan", + "Kamerun", + "Papua Nya Guinea", + "Sverige", + "Uzbekistan", + "Irak", + "Paraguay", + "Zimbabwe", + "Japan", + "Tyskland", + "Kongo", + "Finland", + "Malaysia", + "Vietnam", + "Norge", + "Svalbard", + "Jan Mayen", + "Elfenbenskusten", + "Polen", + "Italien", + "Filippinerna", + "Ecuador", + "Burkina Faso", + "Nya Zeeland", + "Gabon", + "Guinea", + "Storbritannien", + "Ghana", + "Rumänien", + "Laos", + "Uganda", + "Guyana", + "Oman", + "Vitryssland", + "Kirgizistan", + "Senegal", + "Syrien", + "Kambodja", + "Uruguay", + "Tunisien", + "Surinam", + "Nepal", + "Bangladesh", + "Tadzjikistan", + "Grekland", + "Nicaragua", + "Eritrea", + "Nordkorea", + "Malawi", + "Benin", + "Honduras", + "Liberia", + "Bulgarien", + "Kuba", + "Guatemala", + "Island", + "Sydkorea", + "Ungern", + "Portugal", + "Jordanien", + "Serbien", + "Azerbajdzjan", + "Österrike", + "Förenade Arabemiraten", + "Tjeckien", + "Panama", + "Sierra Leone", + "Irland", + "Georgien", + "Sri Lanka", + "Litauen", + "Lettland", + "Togo", + "Kroatien", + "Bosnien och Hercegovina", + "Costa Rica", + "Slovakien", + "Dominikanska republiken", + "Bhutan", + "Estland", + "Danmark", + "Färöarna", + "Grönland", + "Nederländerna", + "Schweiz", + "Guinea-Bissau", + "Taiwan", + "Moldavien", + "Belgien", + "Lesotho", + "Armenien", + "Albanien", + "Salomonöarna", + "Ekvatorialguinea", + "Burundi", + "Haiti", + "Rwanda", + "Makedonien", + "Djibouti", + "Belize", + "Israel", + "El Salvador", + "Slovenien", + "Fiji", + "Kuwait", + "Swaziland", + "Timor-Leste", + "Montenegro", + "Bahamas", + "Vanuatu", + "Qatar", + "Gambia", + "Jamaica", + "Kosovo", + "Libanon", + "Cypern", + "Brunei", + "Trinidad och Tobago", + "Kap Verde", + "Samoa", + "Luxemburg", + "Komorerna", + "Mauritius", + "São Tomé och Príncipe", + "Kiribati", + "Dominica", + "Tonga", + "Mikronesiens federerade stater", + "Singapore", + "Bahrain", + "Saint Lucia", + "Andorra", + "Palau", + "Seychellerna", + "Antigua och Barbuda", + "Barbados", + "Saint Vincent och Grenadinerna", + "Grenada", + "Malta", + "Maldiverna", + "Saint Kitts och Nevis", + "Marshallöarna", + "Liechtenstein", + "San Marino", + "Tuvalu", + "Nauru", + "Monaco", + "Vatikanstaten" + ]; + +},{}],796:[function(require,module,exports){ + module["exports"] = [ + "Sverige" + ]; + +},{}],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"); + address.common_street_suffix = require("./common_street_suffix"); + address.street_prefix = require("./street_prefix"); + address.street_root = require("./street_root"); + address.street_suffix = require("./street_suffix"); + address.state = require("./state"); + address.city = require("./city"); + address.street_name = require("./street_name"); + address.postcode = require("./postcode"); + 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":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 ###" + ]; + +},{}],800:[function(require,module,exports){ + module["exports"] = [ + "Blekinge", + "Dalarna", + "Gotland", + "Gävleborg", + "Göteborg", + "Halland", + "Jämtland", + "Jönköping", + "Kalmar", + "Kronoberg", + "Norrbotten", + "Skaraborg", + "Skåne", + "Stockholm", + "Södermanland", + "Uppsala", + "Värmland", + "Västerbotten", + "Västernorrland", + "Västmanland", + "Älvsborg", + "Örebro", + "Östergötland" + ]; + +},{}],801:[function(require,module,exports){ + module.exports=require(25) +},{"/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" + ]; + +},{}],804:[function(require,module,exports){ + module["exports"] = [ + "Björk", + "Järnvägs", + "Ring", + "Skol", + "Skogs", + "Ny", + "Gran", + "Idrotts", + "Stor", + "Kyrk", + "Industri", + "Park", + "Strand", + "Skol", + "Trädgård", + "Ängs", + "Kyrko", + "Villa", + "Ek", + "Kvarn", + "Stations", + "Back", + "Furu", + "Gen", + "Fabriks", + "Åker", + "Bäck", + "Asp" + ]; + +},{}],805:[function(require,module,exports){ + module["exports"] = [ + "vägen", + "gatan", + "gränden", + "gärdet", + "allén" + ]; + +},{}],806:[function(require,module,exports){ + module["exports"] = [ + 56, + 62, + 59 + ]; + +},{}],807:[function(require,module,exports){ + module["exports"] = [ + "#{common_cell_prefix}-###-####" + ]; + +},{}],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":806,"./formats":807}],809:[function(require,module,exports){ + module["exports"] = [ + "vit", + "silver", + "grå", + "svart", + "röd", + "grön", + "blå", + "gul", + "lila", + "indigo", + "guld", + "brun", + "rosa", + "purpur", + "korall" + ]; + +},{}],810:[function(require,module,exports){ + module["exports"] = [ + "Böcker", + "Filmer", + "Musik", + "Spel", + "Elektronik", + "Datorer", + "Hem", + "Trädgård", + "Verktyg", + "Livsmedel", + "Hälsa", + "Skönhet", + "Leksaker", + "Klädsel", + "Skor", + "Smycken", + "Sport" + ]; + +},{}],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", + "Intelligent", + "Söt", + "Otrolig", + "Fatastisk", + "Praktisk", + "Slimmad", + "Grym" + ], + "material": [ + "Stål", + "Metall", + "Trä", + "Betong", + "Plast", + "Bomul", + "Grnit", + "Gummi", + "Latex" + ], + "product": [ + "Stol", + "Bil", + "Dator", + "Handskar", + "Pants", + "Shirt", + "Table", + "Shoes", + "Hat" + ] + }; + +},{}],813:[function(require,module,exports){ + arguments[4][83][0].apply(exports,arguments) +},{"./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}" + ]; + +},{}],815:[function(require,module,exports){ + module["exports"] = [ + "Gruppen", + "AB", + "HB", + "Group", + "Investment", + "Kommanditbolag", + "Aktiebolag" + ]; + +},{}],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"); + sv.internet = require("./internet"); + 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":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" + ]; + +},{}],821:[function(require,module,exports){ + arguments[4][88][0].apply(exports,arguments) +},{"./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", + "Per", + "Johan", + "Nils", + "Lennart", + "Emil", + "Hans" + ]; + +},{}],823:[function(require,module,exports){ + module["exports"] = [ + "Maria", + "Anna", + "Margareta", + "Elisabeth", + "Eva", + "Birgitta", + "Kristina", + "Karin", + "Elisabet", + "Marie" + ]; + +},{}],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":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", + "Eriksson", + "Larsson", + "Olsson", + "Persson", + "Svensson", + "Gustafsson" + ]; + +},{}],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}", + "#{first_name_women} #{last_name}", + "#{first_name_men} #{last_name}", + "#{prefix} #{first_name_men} #{last_name}", + "#{prefix} #{first_name_women} #{last_name}" + ]; + +},{}],827:[function(require,module,exports){ + module["exports"] = [ + "Dr.", + "Prof.", + "PhD." + ]; + +},{}],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"] = [ + "####-#####", + "####-######" + ]; + +},{}],830:[function(require,module,exports){ + arguments[4][47][0].apply(exports,arguments) +},{"./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":832,"./suffix":833}],832:[function(require,module,exports){ + module["exports"] = [ + "#{Address.city} #{suffix}" + ]; + +},{}],833:[function(require,module,exports){ + module["exports"] = [ + "IF", + "FF", + "BK", + "HK", + "AIF", + "SK", + "FC", + "SK", + "BoIS", + "FK", + "BIS", + "FIF", + "IK" + ]; + +},{}],834:[function(require,module,exports){ + module.exports=require(14) +},{"/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ı", + "Amasya", + "Ankara", + "Antalya", + "Artvin", + "Aydın", + "Balıkesir", + "Bilecik", + "Bingöl", + "Bitlis", + "Bolu", + "Burdur", + "Bursa", + "Çanakkale", + "Çankırı", + "Çorum", + "Denizli", + "Diyarbakır", + "Edirne", + "Elazığ", + "Erzincan", + "Erzurum", + "Eskişehir", + "Gaziantep", + "Giresun", + "Gümüşhane", + "Hakkari", + "Hatay", + "Isparta", + "İçel (Mersin)", + "İstanbul", + "İzmir", + "Kars", + "Kastamonu", + "Kayseri", + "Kırklareli", + "Kırşehir", + "Kocaeli", + "Konya", + "Kütahya", + "Malatya", + "Manisa", + "K.maraş", + "Mardin", + "Muğla", + "Muş", + "Nevşehir", + "Niğde", + "Ordu", + "Rize", + "Sakarya", + "Samsun", + "Siirt", + "Sinop", + "Sivas", + "Tekirdağ", + "Tokat", + "Trabzon", + "Tunceli", + "Şanlıurfa", + "Uşak", + "Van", + "Yozgat", + "Zonguldak", + "Aksaray", + "Bayburt", + "Karaman", + "Kırıkkale", + "Batman", + "Şırnak", + "Bartın", + "Ardahan", + "Iğdır", + "Yalova", + "Karabük", + "Kilis", + "Osmaniye", + "Düzce" + ]; + +},{}],836:[function(require,module,exports){ + module["exports"] = [ + "Afganistan", + "Almanya", + "Amerika Birleşik Devletleri", + "Amerikan Samoa", + "Andorra", + "Angola", + "Anguilla, İngiltere", + "Antigua ve Barbuda", + "Arjantin", + "Arnavutluk", + "Aruba, Hollanda", + "Avustralya", + "Avusturya", + "Azerbaycan", + "Bahama Adaları", + "Bahreyn", + "Bangladeş", + "Barbados", + "Belçika", + "Belize", + "Benin", + "Bermuda, İngiltere", + "Beyaz Rusya", + "Bhutan", + "Birleşik Arap Emirlikleri", + "Birmanya (Myanmar)", + "Bolivya", + "Bosna Hersek", + "Botswana", + "Brezilya", + "Brunei", + "Bulgaristan", + "Burkina Faso", + "Burundi", + "Cape Verde", + "Cayman Adaları, İngiltere", + "Cebelitarık, İngiltere", + "Cezayir", + "Christmas Adası , Avusturalya", + "Cibuti", + "Çad", + "Çek Cumhuriyeti", + "Çin", + "Danimarka", + "Doğu Timor", + "Dominik Cumhuriyeti", + "Dominika", + "Ekvator", + "Ekvator Ginesi", + "El Salvador", + "Endonezya", + "Eritre", + "Ermenistan", + "Estonya", + "Etiyopya", + "Fas", + "Fiji", + "Fildişi Sahili", + "Filipinler", + "Filistin", + "Finlandiya", + "Folkland Adaları, İngiltere", + "Fransa", + "Fransız Guyanası", + "Fransız Güney Eyaletleri (Kerguelen Adaları)", + "Fransız Polinezyası", + "Gabon", + "Galler", + "Gambiya", + "Gana", + "Gine", + "Gine-Bissau", + "Grenada", + "Grönland", + "Guadalup, Fransa", + "Guam, Amerika", + "Guatemala", + "Guyana", + "Güney Afrika", + "Güney Georgia ve Güney Sandviç Adaları, İngiltere", + "Güney Kıbrıs Rum Yönetimi", + "Güney Kore", + "Gürcistan H", + "Haiti", + "Hırvatistan", + "Hindistan", + "Hollanda", + "Hollanda Antilleri", + "Honduras", + "Irak", + "İngiltere", + "İran", + "İrlanda", + "İspanya", + "İsrail", + "İsveç", + "İsviçre", + "İtalya", + "İzlanda", + "Jamaika", + "Japonya", + "Johnston Atoll, Amerika", + "K.K.T.C.", + "Kamboçya", + "Kamerun", + "Kanada", + "Kanarya Adaları", + "Karadağ", + "Katar", + "Kazakistan", + "Kenya", + "Kırgızistan", + "Kiribati", + "Kolombiya", + "Komorlar", + "Kongo", + "Kongo Demokratik Cumhuriyeti", + "Kosova", + "Kosta Rika", + "Kuveyt", + "Kuzey İrlanda", + "Kuzey Kore", + "Kuzey Maryana Adaları", + "Küba", + "Laos", + "Lesotho", + "Letonya", + "Liberya", + "Libya", + "Liechtenstein", + "Litvanya", + "Lübnan", + "Lüksemburg", + "Macaristan", + "Madagaskar", + "Makau (Makao)", + "Makedonya", + "Malavi", + "Maldiv Adaları", + "Malezya", + "Mali", + "Malta", + "Marşal Adaları", + "Martinik, Fransa", + "Mauritius", + "Mayotte, Fransa", + "Meksika", + "Mısır", + "Midway Adaları, Amerika", + "Mikronezya", + "Moğolistan", + "Moldavya", + "Monako", + "Montserrat", + "Moritanya", + "Mozambik", + "Namibia", + "Nauru", + "Nepal", + "Nijer", + "Nijerya", + "Nikaragua", + "Niue, Yeni Zelanda", + "Norveç", + "Orta Afrika Cumhuriyeti", + "Özbekistan", + "Pakistan", + "Palau Adaları", + "Palmyra Atoll, Amerika", + "Panama", + "Papua Yeni Gine", + "Paraguay", + "Peru", + "Polonya", + "Portekiz", + "Porto Riko, Amerika", + "Reunion, Fransa", + "Romanya", + "Ruanda", + "Rusya Federasyonu", + "Saint Helena, İngiltere", + "Saint Martin, Fransa", + "Saint Pierre ve Miquelon, Fransa", + "Samoa", + "San Marino", + "Santa Kitts ve Nevis", + "Santa Lucia", + "Santa Vincent ve Grenadinler", + "Sao Tome ve Principe", + "Senegal", + "Seyşeller", + "Sırbistan", + "Sierra Leone", + "Singapur", + "Slovakya", + "Slovenya", + "Solomon Adaları", + "Somali", + "Sri Lanka", + "Sudan", + "Surinam", + "Suriye", + "Suudi Arabistan", + "Svalbard, Norveç", + "Svaziland", + "Şili", + "Tacikistan", + "Tanzanya", + "Tayland", + "Tayvan", + "Togo", + "Tonga", + "Trinidad ve Tobago", + "Tunus", + "Turks ve Caicos Adaları, İngiltere", + "Tuvalu", + "Türkiye", + "Türkmenistan", + "Uganda", + "Ukrayna", + "Umman", + "Uruguay", + "Ürdün", + "Vallis ve Futuna, Fransa", + "Vanuatu", + "Venezuela", + "Vietnam", + "Virgin Adaları, Amerika", + "Virgin Adaları, İngiltere", + "Wake Adaları, Amerika", + "Yemen", + "Yeni Kaledonya, Fransa", + "Yeni Zelanda", + "Yunanistan", + "Zambiya", + "Zimbabve" + ]; + +},{}],837:[function(require,module,exports){ + module["exports"] = [ + "Türkiye" + ]; + +},{}],838:[function(require,module,exports){ + var address = {}; + module['exports'] = address; + address.city = require("./city"); + address.street_root = require("./street_root"); + address.country = require("./country"); + address.postcode = require("./postcode"); + 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":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}],841:[function(require,module,exports){ + module.exports=require(26) +},{"/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", + "Kocatepe Caddesi", + "İsmet Paşa Caddesi", + "30 Ağustos Caddesi", + "İsmet Attila Caddesi", + "Namık Kemal Caddesi", + "Lütfi Karadirek Caddesi", + "Sarıkaya Caddesi", + "Yunus Emre Sokak", + "Dar Sokak", + "Fatih Sokak ", + "Harman Yolu Sokak ", + "Ergenekon Sokak ", + "Ülkü Sokak", + "Sağlık Sokak", + "Okul Sokak", + "Harman Altı Sokak", + "Kaldırım Sokak", + "Mevlana Sokak", + "Gül Sokak", + "Sıran Söğüt Sokak", + "Güven Yaka Sokak", + "Saygılı Sokak", + "Menekşe Sokak", + "Dağınık Evler Sokak", + "Sevgi Sokak", + "Afyon Kaya Sokak", + "Oğuzhan Sokak", + "İbn-i Sina Sokak", + "Okul Sokak", + "Bahçe Sokak", + "Köypınar Sokak", + "Kekeçoğlu Sokak", + "Barış Sokak", + "Bayır Sokak", + "Kerimoğlu Sokak", + "Nalbant Sokak", + "Bandak Sokak" + ]; + +},{}],843:[function(require,module,exports){ + module["exports"] = [ + "+90-53#-###-##-##", + "+90-54#-###-##-##", + "+90-55#-###-##-##", + "+90-50#-###-##-##" + ]; + +},{}],844:[function(require,module,exports){ + arguments[4][29][0].apply(exports,arguments) +},{"./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":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" + ]; + +},{}],847:[function(require,module,exports){ + arguments[4][88][0].apply(exports,arguments) +},{"./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":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}],850:[function(require,module,exports){ + module["exports"] = [ + "Aba", + "Abak", + "Abaka", + "Abakan", + "Abakay", + "Abar", + "Abay", + "Abı", + "Abılay", + "Abluç", + "Abşar", + "Açığ", + "Açık", + "Açuk", + "Adalan", + "Adaldı", + "Adalmış", + "Adar", + "Adaş", + "Adberilgen", + "Adıgüzel", + "Adık", + "Adıkutlu", + "Adıkutlutaş", + "Adlı", + "Adlıbeğ", + "Adraman", + "Adsız", + "Afşar", + "Afşın", + "Ağabay", + "Ağakağan", + "Ağalak", + "Ağlamış", + "Ak", + "Akaş", + "Akata", + "Akbaş", + "Akbay", + "Akboğa", + "Akbörü", + "Akbudak", + "Akbuğra", + "Akbulak", + "Akça", + "Akçakoca", + "Akçora", + "Akdemir", + "Akdoğan", + "Akı", + "Akıbudak", + "Akım", + "Akın", + "Akınçı", + "Akkun", + "Akkunlu", + "Akkurt", + "Akkuş", + "Akpıra", + "Aksungur", + "Aktan", + "Al", + "Ala", + "Alaban", + "Alabörü", + "Aladağ", + "Aladoğan", + "Alakurt", + "Alayunt", + "Alayuntlu", + "Aldemir", + "Aldıgerey", + "Aldoğan", + "Algu", + "Alımga", + "Alka", + "Alkabölük", + "Alkaevli", + "Alkan", + "Alkaşı", + "Alkış", + "Alp", + "Alpagut", + "Alpamış", + "Alparsbeğ", + "Alparslan", + "Alpata", + "Alpay", + "Alpaya", + "Alpaykağan", + "Alpbamsı", + "Alpbilge", + "Alpdirek", + "Alpdoğan", + "Alper", + "Alperen", + "Alpertunga", + "Alpgerey", + "Alpış", + "Alpilig", + "Alpkara", + "Alpkutlu", + "Alpkülük", + "Alpşalçı", + "Alptegin", + "Alptuğrul", + "Alptunga", + "Alpturan", + "Alptutuk", + "Alpuluğ", + "Alpurungu", + "Alpurungututuk", + "Alpyörük", + "Altan", + "Altankağan", + "Altankan", + "Altay", + "Altın", + "Altınkağan", + "Altınkan", + "Altınoba", + "Altıntamgan", + "Altıntamgantarkan", + "Altıntarkan", + "Altıntay", + "Altmışkara", + "Altuga", + "Amaç", + "Amrak", + "Amul", + "Ançuk", + "Andarıman", + "Anıl", + "Ant", + "Apa", + "Apak", + "Apatarkan", + "Aprançur", + "Araboğa", + "Arademir", + "Aral", + "Arbay", + "Arbuz", + "Arçuk", + "Ardıç", + "Argıl", + "Argu", + "Argun", + "Arı", + "Arıboğa", + "Arık", + "Arıkağan", + "Arıkdoruk", + "Arınç", + "Arkın", + "Arkış", + "Armağan", + "Arnaç", + "Arpat", + "Arsal", + "Arsıl", + "Arslan", + "Arslanargun", + "Arslanbörü", + "Arslansungur", + "Arslantegin", + "Arslanyabgu", + "Arşun", + "Artıınal", + "Artuk", + "Artukaç", + "Artut", + "Aruk", + "Asartegin", + "Asığ", + "Asrı", + "Asuğ", + "Aşan", + "Aşanboğa", + "Aşantuğrul", + "Aşantudun", + "Aşıkbulmuş", + "Aşkın", + "Aştaloğul", + "Aşuk", + "Ataç", + "Atakağan", + "Atakan", + "Atalan", + "Ataldı", + "Atalmış", + "Ataman", + "Atasagun", + "Atasu", + "Atberilgen", + "Atıgay", + "Atıkutlu", + "Atıkutlutaş", + "Atıla", + "Atılgan", + "Atım", + "Atımer", + "Atış", + "Atlı", + "Atlıbeğ", + "Atlıkağan", + "Atmaca", + "Atsız", + "Atunçu", + "Avar", + "Avluç", + "Avşar", + "Ay", + "Ayaçı", + "Ayas", + "Ayaş", + "Ayaz", + "Aybalta", + "Ayban", + "Aybars", + "Aybeğ", + "Aydarkağan", + "Aydemir", + "Aydın", + "Aydınalp", + "Aydoğan", + "Aydoğdu", + "Aydoğmuş", + "Aygırak", + "Ayıtmış", + "Ayız", + "Ayızdağ", + "Aykağan", + "Aykan", + "Aykurt", + "Ayluç", + "Ayluçtarkan", + "Ayma", + "Ayruk", + "Aysılığ", + "Aytak", + "Ayyıldız", + "Azak", + "Azban", + "Azgan", + "Azganaz", + "Azıl", + "Babır", + "Babur", + "Baçara", + "Baççayman", + "Baçman", + "Badabul", + "Badruk", + "Badur", + "Bağa", + "Bağaalp", + "Bağaışbara", + "Bağan", + "Bağaşatulu", + "Bağatarkan", + "Bağatengrikağan", + "Bağatur", + "Bağaturçigşi", + "Bağaturgerey", + "Bağaturipi", + "Bağatursepi", + "Bağış", + "Bağtaş", + "Bakağul", + "Bakır", + "Bakırsokum", + "Baksı", + "Bakşı", + "Balaban", + "Balaka", + "Balakatay", + "Balamır", + "Balçar", + "Baldu", + "Balkık", + "Balta", + "Baltacı", + "Baltar", + "Baltır", + "Baltur", + "Bamsı", + "Bangu", + "Barak", + "Baraktöre", + "Baran", + "Barbeğ", + "Barboğa", + "Barbol", + "Barbulsun", + "Barça", + "Barçadoğdu", + "Barçadoğmuş", + "Barçadurdu", + "Barçadurmuş", + "Barçan", + "Barçatoyun", + "Bardıbay", + "Bargan", + "Barımtay", + "Barın", + "Barkan", + "Barkdoğdu", + "Barkdoğmuş", + "Barkdurdu", + "Barkdurmuş", + "Barkın", + "Barlas", + "Barlıbay", + "Barmaklak", + "Barmaklı", + "Barman", + "Bars", + "Barsbeğ", + "Barsboğa", + "Barsgan", + "Barskan", + "Barsurungu", + "Bartu", + "Basademir", + "Basan", + "Basanyalavaç", + "Basar", + "Basat", + "Baskın", + "Basmıl", + "Bastı", + "Bastuğrul", + "Basu", + "Basut", + "Başak", + "Başbuğ", + "Başçı", + "Başgan", + "Başkırt", + "Başkurt", + "Baştar", + "Batrak", + "Batu", + "Batuk", + "Batur", + "Baturalp", + "Bay", + "Bayançar", + "Bayankağan", + "Bayat", + "Bayazıt", + "Baybars", + "Baybayık", + "Baybiçen", + "Bayboğa", + "Baybora", + "Baybüre", + "Baydar", + "Baydemir", + "Baydur", + "Bayık", + "Bayınçur", + "Bayındır", + "Baykal", + "Baykara", + "Baykoca", + "Baykuzu", + "Baymünke", + "Bayna", + "Baynal", + "Baypüre", + "Bayrı", + "Bayraç", + "Bayrak", + "Bayram", + "Bayrın", + "Bayruk", + "Baysungur", + "Baytara", + "Baytaş", + "Bayunçur", + "Bayur", + "Bayurku", + "Bayutmuş", + "Bayuttu", + "Bazır", + "Beçeapa", + "Beçkem", + "Beğ", + "Beğarslan", + "Beğbars", + "Beğbilgeçikşin", + "Beğboğa", + "Beğçur", + "Beğdemir", + "Beğdilli", + "Beğdurmuş", + "Beğkulu", + "Beğtaş", + "Beğtegin", + "Beğtüzün", + "Begi", + "Begil", + "Begine", + "Begitutuk", + "Beglen", + "Begni", + "Bek", + "Bekazıl", + "Bekbekeç", + "Bekeç", + "Bekeçarslan", + "Bekeçarslantegin", + "Bekeçtegin", + "Beker", + "Beklemiş", + "Bektür", + "Belçir", + "Belek", + "Belgi", + "Belgüc", + "Beltir", + "Bengi", + "Bengü", + "Benlidemir", + "Berdibeğ", + "Berendey", + "Bergü", + "Berginsenge", + "Berk", + "Berke", + "Berkiş", + "Berkyaruk", + "Bermek", + "Besentegin", + "Betemir", + "Beyizçi", + "Beyrek", + "Beyrem", + "Bıçkı", + "Bıçkıcı", + "Bıdın", + "Bıtaybıkı", + "Bıtrı", + "Biçek", + "Bilge", + "Bilgebayunçur", + "Bilgebeğ", + "Bilgeçikşin", + "Bilgeışbara", + "Bilgeışbaratamgan", + "Bilgekağan", + "Bilgekan", + "Bilgekutluk", + "Bilgekülüçur", + "Bilgetaçam", + "Bilgetamgacı", + "Bilgetardu", + "Bilgetegin", + "Bilgetonyukuk", + "Bilgez", + "Bilgiç", + "Bilgin", + "Bilig", + "Biligköngülsengün", + "Bilik", + "Binbeği", + "Bindir", + "Boğa", + "Boğaç", + "Boğaçuk", + "Boldaz", + "Bolmuş", + "Bolsun", + "Bolun", + "Boncuk", + "Bongul", + "Bongulboğa", + "Bora", + "Boran", + "Borçul", + "Borlukçu", + "Bornak", + "Boyan", + "Boyankulu", + "Boylabağa", + "Boylabağatarkan", + "Boylakutlutarkan", + "Bozan", + "Bozbörü", + "Bozdoğan", + "Bozkurt", + "Bozkuş", + "Bozok", + "Bögde", + "Böge", + "Bögü", + "Bökde", + "Bökde", + "Böke", + "Bölen", + "Bölükbaşı", + "Bönek", + "Bönge", + "Börü", + "Börübars", + "Börüsengün", + "Börteçine", + "Buçan", + "Buçur", + "Budağ", + "Budak", + "Budunlu", + "Buğday", + "Buğra", + "Buğrakarakağan", + "Bukak", + "Bukaktutuk", + "Bulaçapan", + "Bulak", + "Bulan", + "Buldur", + "Bulgak", + "Bulmaz", + "Bulmuş", + "Buluç", + "Buluğ", + "Buluk", + "Buluş", + "Bulut", + "Bumın", + "Bunsuz", + "Burçak", + "Burguçan", + "Burkay", + "Burslan", + "Burulday", + "Burulgu", + "Burunduk", + "Buşulgan", + "Butak", + "Butuk", + "Buyan", + "Buyançuk", + "Buyandemir", + "Buyankara", + "Buyat", + "Buyraç", + "Buyruç", + "Buyruk", + "Buzaç", + "Buzaçtutuk", + "Büdüs", + "Büdüstudun", + "Bügü", + "Bügdüz", + "Bügdüzemen", + "Büge", + "Büğübilge", + "Bükdüz", + "Büke", + "Bükebuyraç", + "Bükebuyruç", + "Bükey", + "Büktegin", + "Büküşboğa", + "Bümen", + "Bünül", + "Büre", + "Bürgüt", + "Bürkek", + "Bürküt", + "Bürlük", + "Cebe", + "Ceyhun", + "Cılasun", + "Çaba", + "Çabdar", + "Çablı", + "Çabuş", + "Çağan", + "Çağatay", + "Çağlar", + "Çağlayan", + "Çağrı", + "Çağrıbeğ", + "Çağrıtegin", + "Çağru", + "Çalapkulu", + "Çankız", + "Çemen", + "Çemgen", + "Çeykün", + "Çıngır", + "Çiçek", + "Çiçem", + "Çiğdem", + "Çilenti", + "Çimen", + "Çobulmak", + "Çocukbörü", + "Çokramayul", + "Çolman", + "Çolpan", + "Çölü", + "Damla", + "Deniz", + "Dilek", + "Diri", + "Dizik", + "Duru", + "Dururbunsuz", + "Duygu", + "Ebin", + "Ebkızı", + "Ebren", + "Edil", + "Ediz", + "Egemen", + "Eğrim", + "Ekeç", + "Ekim", + "Ekin", + "Elkin", + "Elti", + "Engin", + "Erdem", + "Erdeni", + "Erdeniözük", + "Erdenikatun", + "Erentüz", + "Ergene", + "Ergenekatun", + "Erinç", + "Erke", + "Ermen", + "Erten", + "Ertenözük", + "Esen", + "Esenbike", + "Eser", + "Esin", + "Etil", + "Evin", + "Eyiz", + "Gelin", + "Gelincik", + "Gökbörü", + "Gökçe", + "Gökçegöl", + "Gökçen", + "Gökçiçek", + "Gökşin", + "Gönül", + "Görün", + "Gözde", + "Gülegen", + "Gülemen", + "Güler", + "Gülümser", + "Gümüş", + "Gün", + "Günay", + "Günçiçek", + "Gündoğdu", + "Gündoğmuş", + "Güneş", + "Günyaruk", + "Gürbüz", + "Güvercin", + "Güzey", + "Işığ", + "Işık", + "Işıl", + "Işılay", + "Ila", + "Ilaçın", + "Ilgın", + "Inanç", + "Irmak", + "Isığ", + "Isık", + "Iyık", + "Iyıktağ", + "İdil", + "İkeme", + "İkiçitoyun", + "İlbilge", + "İldike", + "İlgegü", + "İmrem", + "İnci", + "İnç", + "İrinç", + "İrinçköl", + "İrtiş", + "İtil", + "Kancı", + "Kançı", + "Kapgar", + "Karaca", + "Karaça", + "Karak", + "Kargılaç", + "Karlıgaç", + "Katun", + "Katunkız", + "Kayacık", + "Kayaçık", + "Kayça", + "Kaynak", + "Kazanç", + "Kazkatun", + "Kekik", + "Keklik", + "Kepez", + "Kesme", + "Keyken", + "Kezlik", + "Kımız", + "Kımızın", + "Kımızalma", + "Kımızalmıla", + "Kırçiçek", + "Kırgavul", + "Kırlangıç", + "Kıvanç", + "Kıvılcım", + "Kızdurmuş", + "Kızılalma" + ]; + +},{}],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", + "Adan", + "Adıvar", + "Akal", + "Akan", + "Akar ", + "Akay", + "Akaydın", + "Akbulut", + "Akgül", + "Akışık", + "Akman", + "Akyürek", + "Akyüz", + "Akşit", + "Alnıaçık", + "Alpuğan", + "Alyanak", + "Arıcan", + "Arslanoğlu", + "Atakol", + "Atan", + "Avan", + "Ayaydın", + "Aybar", + "Aydan", + "Aykaç", + "Ayverdi", + "Ağaoğlu", + "Aşıkoğlu", + "Babacan", + "Babaoğlu", + "Bademci", + "Bakırcıoğlu", + "Balaban", + "Balcı", + "Barbarosoğlu", + "Baturalp", + "Baykam", + "Başoğlu", + "Berberoğlu", + "Beşerler", + "Beşok", + "Biçer", + "Bolatlı", + "Dalkıran", + "Dağdaş", + "Dağlaroğlu", + "Demirbaş", + "Demirel", + "Denkel", + "Dizdar ", + "Doğan ", + "Durak ", + "Durmaz", + "Duygulu", + "Düşenkalkar", + "Egeli", + "Ekici", + "Ekşioğlu", + "Eliçin", + "Elmastaşoğlu", + "Elçiboğa", + "Erbay", + "Erberk", + "Erbulak", + "Erdoğan", + "Erez", + "Erginsoy", + "Erkekli", + "Eronat", + "Ertepınar", + "Ertürk", + "Erçetin", + "Evliyaoğlu", + "Gönültaş", + "Gümüşpala", + "Günday", + "Gürmen", + "Hakyemez", + "Hamzaoğlu", + "Ilıcalı", + "Kahveci", + "Kaplangı", + "Karabulut", + "Karaböcek", + "Karadaş", + "Karaduman", + "Karaer", + "Kasapoğlu", + "Kavaklıoğlu", + "Kaya ", + "Keseroğlu", + "Keçeci", + "Kılıççı", + "Kıraç ", + "Kocabıyık", + "Korol", + "Koyuncu", + "Koç", + "Koçoğlu", + "Koçyiğit", + "Kuday", + "Kulaksızoğlu", + "Kumcuoğlu", + "Kunt", + "Kunter", + "Kurutluoğlu", + "Kutlay", + "Kuzucu", + "Körmükçü", + "Köybaşı", + "Köylüoğlu", + "Küçükler", + "Limoncuoğlu", + "Mayhoş", + "Menemencioğlu", + "Mertoğlu", + "Nalbantoğlu", + "Nebioğlu", + "Numanoğlu", + "Okumuş", + "Okur", + "Oraloğlu", + "Orbay", + "Ozansoy", + "Paksüt", + "Pekkan", + "Pektemek", + "Polat", + "Poyrazoğlu", + "Poçan", + "Sadıklar", + "Samancı", + "Sandalcı", + "Sarıoğlu", + "Saygıner", + "Sepetçi", + "Sezek", + "Sinanoğlu", + "Solmaz", + "Sözeri", + "Süleymanoğlu", + "Tahincioğlu", + "Tanrıkulu", + "Tazegül", + "Taşlı", + "Taşçı", + "Tekand", + "Tekelioğlu", + "Tokatlıoğlu", + "Tokgöz", + "Topaloğlu", + "Topçuoğlu", + "Toraman", + "Tunaboylu", + "Tunçeri", + "Tuğlu", + "Tuğluk", + "Türkdoğan", + "Türkyılmaz", + "Tütüncü", + "Tüzün", + "Uca", + "Uluhan", + "Velioğlu", + "Yalçın", + "Yazıcı", + "Yetkiner", + "Yeşilkaya", + "Yıldırım ", + "Yıldızoğlu", + "Yılmazer", + "Yorulmaz", + "Çamdalı", + "Çapanoğlu", + "Çatalbaş", + "Çağıran", + "Çetin", + "Çetiner", + "Çevik", + "Çörekçi", + "Önür", + "Örge", + "Öymen", + "Özberk", + "Özbey", + "Özbir", + "Özdenak", + "Özdoğan", + "Özgörkey", + "Özkara", + "Özkök ", + "Öztonga", + "Öztuna" + ]; + +},{}],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." + ]; + +},{}],855:[function(require,module,exports){ + module["exports"] = [ + "392", + "510", + "512", + "522", + "562", + "564", + "592", + "594", + "800", + "811", + "822", + "850", + "888", + "898", + "900", + "322", + "416", + "272", + "472", + "382", + "358", + "312", + "242", + "478", + "466", + "256", + "266", + "378", + "488", + "458", + "228", + "426", + "434", + "374", + "248", + "224", + "286", + "376", + "364", + "258", + "412", + "380", + "284", + "424", + "446", + "442", + "222", + "342", + "454", + "456", + "438", + "326", + "476", + "246", + "216", + "212", + "232", + "344", + "370", + "338", + "474", + "366", + "352", + "318", + "288", + "386", + "348", + "262", + "332", + "274", + "422", + "236", + "482", + "324", + "252", + "436", + "384", + "388", + "452", + "328", + "464", + "264", + "362", + "484", + "368", + "346", + "414", + "486", + "282", + "356", + "462", + "428", + "276", + "432", + "226", + "354", + "372" + ]; + +},{}],856:[function(require,module,exports){ + module["exports"] = [ + "+90-###-###-##-##", + "+90-###-###-#-###" + ]; + +},{}],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":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}" + ]; + +},{}],860:[function(require,module,exports){ + module["exports"] = [ + "Алчевськ", + "Артемівськ", + "Бердичів", + "Бердянськ", + "Біла Церква", + "Бровари", + "Вінниця", + "Горлівка", + "Дніпродзержинськ", + "Дніпропетровськ", + "Донецьк", + "Євпаторія", + "Єнакієве", + "Житомир", + "Запоріжжя", + "Івано-Франківськ", + "Ізмаїл", + "Кам’янець-Подільський", + "Керч", + "Київ", + "Кіровоград", + "Конотоп", + "Краматорськ", + "Красний Луч", + "Кременчук", + "Кривий Ріг", + "Лисичанськ", + "Луганськ", + "Луцьк", + "Львів", + "Макіївка", + "Маріуполь", + "Мелітополь", + "Миколаїв", + "Мукачеве", + "Нікополь", + "Одеса", + "Олександрія", + "Павлоград", + "Полтава", + "Рівне", + "Севастополь", + "Сєвєродонецьк", + "Сімферополь", + "Слов’янськ", + "Суми", + "Тернопіль", + "Ужгород", + "Умань", + "Харків", + "Херсон", + "Хмельницький", + "Черкаси", + "Чернівці", + "Чернігів", + "Шостка", + "Ялта" + ]; + +},{}],861:[function(require,module,exports){ + module["exports"] = [ + "Південний", + "Північний", + "Східний", + "Західний" + ]; + +},{}],862:[function(require,module,exports){ + module["exports"] = [ + "град" + ]; + +},{}],863:[function(require,module,exports){ + module["exports"] = [ + "Австралія", + "Австрія", + "Азербайджан", + "Албанія", + "Алжир", + "Ангола", + "Андорра", + "Антигуа і Барбуда", + "Аргентина", + "Афганістан", + "Багамські Острови", + "Бангладеш", + "Барбадос", + "Бахрейн", + "Беліз", + "Бельгія", + "Бенін", + "Білорусь", + "Болгарія", + "Болівія", + "Боснія і Герцеговина", + "Ботсвана", + "Бразилія", + "Бруней", + "Буркіна-Фасо", + "Бурунді", + "Бутан", + "В’єтнам", + "Вануату", + "Ватикан", + "Велика Британія", + "Венесуела", + "Вірменія", + "Габон", + "Гаїті", + "Гайана", + "Гамбія", + "Гана", + "Гватемала", + "Гвінея", + "Гвінея-Бісау", + "Гондурас", + "Гренада", + "Греція", + "Грузія", + "Данія", + "Демократична Республіка Конго", + "Джибуті", + "Домініка", + "Домініканська Республіка", + "Еквадор", + "Екваторіальна Гвінея", + "Еритрея", + "Естонія", + "Ефіопія", + "Єгипет", + "Ємен", + "Замбія", + "Зімбабве", + "Ізраїль", + "Індія", + "Індонезія", + "Ірак", + "Іран", + "Ірландія", + "Ісландія", + "Іспанія", + "Італія", + "Йорданія", + "Кабо-Верде", + "Казахстан", + "Камбоджа", + "Камерун", + "Канада", + "Катар", + "Кенія", + "Киргизстан", + "Китай", + "Кіпр", + "Кірибаті", + "Колумбія", + "Коморські Острови", + "Конго", + "Коста-Рика", + "Кот-д’Івуар", + "Куба", + "Кувейт", + "Лаос", + "Латвія", + "Лесото", + "Литва", + "Ліберія", + "Ліван", + "Лівія", + "Ліхтенштейн", + "Люксембург", + "Маврикій", + "Мавританія", + "Мадаґаскар", + "Македонія", + "Малаві", + "Малайзія", + "Малі", + "Мальдіви", + "Мальта", + "Марокко", + "Маршаллові Острови", + "Мексика", + "Мозамбік", + "Молдова", + "Монако", + "Монголія", + "Намібія", + "Науру", + "Непал", + "Нігер", + "Нігерія", + "Нідерланди", + "Нікарагуа", + "Німеччина", + "Нова Зеландія", + "Норвегія", + "Об’єднані Арабські Емірати", + "Оман", + "Пакистан", + "Палау", + "Панама", + "Папуа-Нова Гвінея", + "Парагвай", + "Перу", + "Південна Корея", + "Південний Судан", + "Південно-Африканська Республіка", + "Північна Корея", + "Польща", + "Португалія", + "Російська Федерація", + "Руанда", + "Румунія", + "Сальвадор", + "Самоа", + "Сан-Марино", + "Сан-Томе і Принсіпі", + "Саудівська Аравія", + "Свазіленд", + "Сейшельські Острови", + "Сенеґал", + "Сент-Вінсент і Гренадини", + "Сент-Кітс і Невіс", + "Сент-Люсія", + "Сербія", + "Сирія", + "Сінгапур", + "Словаччина", + "Словенія", + "Соломонові Острови", + "Сомалі", + "Судан", + "Суринам", + "Східний Тимор", + "США", + "Сьєрра-Леоне", + "Таджикистан", + "Таїланд", + "Танзанія", + "Того", + "Тонга", + "Тринідад і Тобаго", + "Тувалу", + "Туніс", + "Туреччина", + "Туркменістан", + "Уганда", + "Угорщина", + "Узбекистан", + "Україна", + "Уругвай", + "Федеративні Штати Мікронезії", + "Фіджі", + "Філіппіни", + "Фінляндія", + "Франція", + "Хорватія", + "Центральноафриканська Республіка", + "Чад", + "Чехія", + "Чилі", + "Чорногорія", + "Швейцарія", + "Швеція", + "Шрі-Ланка", + "Ямайка", + "Японія" + ]; + +},{}],864:[function(require,module,exports){ + 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"); + address.street_suffix = require("./street_suffix"); + address.secondary_address = require("./secondary_address"); + address.postcode = require("./postcode"); + address.state = require("./state"); + address.street_title = require("./street_title"); + address.city_name = require("./city_name"); + address.city = require("./city"); + address.city_prefix = require("./city_prefix"); + 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":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"] = [ + "АР Крим", + "Вінницька область", + "Волинська область", + "Дніпропетровська область", + "Донецька область", + "Житомирська область", + "Закарпатська область", + "Запорізька область", + "Івано-Франківська область", + "Київська область", + "Кіровоградська область", + "Луганська область", + "Львівська область", + "Миколаївська область", + "Одеська область", + "Полтавська область", + "Рівненська область", + "Сумська область", + "Тернопільська область", + "Харківська область", + "Херсонська область", + "Хмельницька область", + "Черкаська область", + "Чернівецька область", + "Чернігівська область", + "Київ", + "Севастополь" + ]; + +},{}],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}" + ]; + +},{}],871:[function(require,module,exports){ + module["exports"] = [ + "вул.", + "вулиця", + "пр.", + "проспект", + "пл.", + "площа", + "пров.", + "провулок" + ]; + +},{}],872:[function(require,module,exports){ + module["exports"] = [ + "майдан" + ]; + +},{}],873:[function(require,module,exports){ + 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"] = [ + "ТОВ", + "ПАТ", + "ПрАТ", + "ТДВ", + "КТ", + "ПТ", + "ДП", + "ФОП" + ]; + +},{}],877:[function(require,module,exports){ + 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":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", + "com.ua", + "crimea.ua", + "cv.ua", + "dn.ua", + "dnepropetrovsk.ua", + "dnipropetrovsk.ua", + "donetsk.ua", + "dp.ua", + "if.ua", + "in.ua", + "ivano-frankivsk.ua", + "kh.ua", + "kharkiv.ua", + "kharkov.ua", + "kherson.ua", + "khmelnitskiy.ua", + "kiev.ua", + "kirovograd.ua", + "km.ua", + "kr.ua", + "ks.ua", + "lg.ua", + "lt.ua", + "lugansk.ua", + "lutsk.ua", + "lutsk.net", + "lviv.ua", + "mk.ua", + "net.ua", + "nikolaev.ua", + "od.ua", + "odessa.ua", + "org.ua", + "pl.ua", + "pl.ua", + "poltava.ua", + "rovno.ua", + "rv.ua", + "sebastopol.ua", + "sm.ua", + "sumy.ua", + "te.ua", + "ternopil.ua", + "ua", + "uz.ua", + "uzhgorod.ua", + "vinnica.ua", + "vn.ua", + "volyn.net", + "volyn.ua", + "yalta.ua", + "zaporizhzhe.ua", + "zhitomir.ua", + "zp.ua", + "zt.ua", + "укр" + ]; + +},{}],880:[function(require,module,exports){ + module["exports"] = [ + "ukr.net", + "ex.ua", + "e-mail.ua", + "i.ua", + "meta.ua", + "yandex.ua", + "gmail.com" + ]; + +},{}],881:[function(require,module,exports){ + arguments[4][37][0].apply(exports,arguments) +},{"./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"] = [ + "Аврелія", + "Аврора", + "Агапія", + "Агата", + "Агафія", + "Агнеса", + "Агнія", + "Агрипина", + "Ада", + "Аделаїда", + "Аделіна", + "Адріана", + "Азалія", + "Алевтина", + "Аліна", + "Алла", + "Альбіна", + "Альвіна", + "Анастасія", + "Анастасія", + "Анатолія", + "Ангеліна", + "Анжела", + "Анна", + "Антонида", + "Антоніна", + "Антонія", + "Анфіса", + "Аполлінарія", + "Аполлонія", + "Аркадія", + "Артемія", + "Афанасія", + "Білослава", + "Біляна", + "Благовіста", + "Богдана", + "Богуслава", + "Божена", + "Болеслава", + "Борислава", + "Броніслава", + "В’ячеслава", + "Валентина", + "Валерія", + "Варвара", + "Василина", + "Вікторія", + "Вілена", + "Віленіна", + "Віліна", + "Віола", + "Віолетта", + "Віра", + "Віргінія", + "Віта", + "Віталіна", + "Влада", + "Владислава", + "Власта", + "Всеслава", + "Галина", + "Ганна", + "Гелена", + "Далеслава", + "Дана", + "Дарина", + "Дарислава", + "Діана", + "Діяна", + "Добринка", + "Добромила", + "Добромира", + "Добромисла", + "Доброслава", + "Долеслава", + "Доляна", + "Жанна", + "Жозефіна", + "Забава", + "Звенислава", + "Зінаїда", + "Злата", + "Зореслава", + "Зорина", + "Зоряна", + "Зоя", + "Іванна", + "Ілона", + "Інна", + "Іннеса", + "Ірина", + "Ірма", + "Калина", + "Каріна", + "Катерина", + "Квітка", + "Квітослава", + "Клавдія", + "Крентта", + "Ксенія", + "Купава", + "Лада", + "Лариса", + "Леся", + "Ликера", + "Лідія", + "Лілія", + "Любава", + "Любислава", + "Любов", + "Любомила", + "Любомира", + "Люборада", + "Любослава", + "Людмила", + "Людомила", + "Майя", + "Мальва", + "Мар’яна", + "Марина", + "Марічка", + "Марія", + "Марта", + "Меланія", + "Мечислава", + "Милодара", + "Милослава", + "Мирослава", + "Мілана", + "Мокрина", + "Мотря", + "Мстислава", + "Надія", + "Наталія", + "Неля", + "Немира", + "Ніна", + "Огняна", + "Оксана", + "Олександра", + "Олена", + "Олеся", + "Ольга", + "Ореста", + "Орина", + "Орислава", + "Орися", + "Оріяна", + "Павліна", + "Палажка", + "Пелагея", + "Пелагія", + "Поліна", + "Поляна", + "Потішана", + "Радміла", + "Радослава", + "Раїна", + "Раїса", + "Роксолана", + "Ромена", + "Ростислава", + "Руслана", + "Світлана", + "Святослава", + "Слава", + "Сміяна", + "Сніжана", + "Соломія", + "Соня", + "Софія", + "Станислава", + "Сюзана", + "Таїсія", + "Тамара", + "Тетяна", + "Устина", + "Фаїна", + "Февронія", + "Федора", + "Феодосія", + "Харитина", + "Христина", + "Христя", + "Юліанна", + "Юлія", + "Юстина", + "Юхима", + "Юхимія", + "Яна", + "Ярина", + "Ярослава" + ]; + +},{}],883:[function(require,module,exports){ + module["exports"] = [ + "Андрухович", + "Бабух", + "Балабан", + "Балабуха", + "Балакун", + "Балицька", + "Бамбула", + "Бандера", + "Барановська", + "Бачей", + "Башук", + "Бердник", + "Білич", + "Бондаренко", + "Борецька", + "Боровська", + "Борочко", + "Боярчук", + "Брицька", + "Бурмило", + "Бутько", + "Василишина", + "Васильківська", + "Вергун", + "Вередун", + "Верещук", + "Витребенько", + "Вітряк", + "Волощук", + "Гайдук", + "Гайова", + "Гайчук", + "Галаєнко", + "Галатей", + "Галаціон", + "Гаман", + "Гамула", + "Ганич", + "Гарай", + "Гарун", + "Гладківська", + "Гладух", + "Глинська", + "Гнатишина", + "Гойко", + "Головець", + "Горбач", + "Гордійчук", + "Горова", + "Городоцька", + "Гречко", + "Григоришина", + "Гриневецька", + "Гриневська", + "Гришко", + "Громико", + "Данилишина", + "Данилко", + "Демків", + "Демчишина", + "Дзюб’як", + "Дзюба", + "Дідух", + "Дмитришина", + "Дмитрук", + "Довгалевська", + "Дурдинець", + "Євенко", + "Євпак", + "Ємець", + "Єрмак", + "Забіла", + "Зварич", + "Зінкевич", + "Зленко", + "Іванишина", + "Калач", + "Кандиба", + "Карпух", + "Кивач", + "Коваленко", + "Ковальська", + "Коломієць", + "Коман", + "Компанієць", + "Кононець", + "Кордун", + "Корецька", + "Корнїйчук", + "Коров’як", + "Коцюбинська", + "Кулинич", + "Кульчицька", + "Лагойда", + "Лазірко", + "Ланова", + "Латан", + "Латанська", + "Лахман", + "Левадовська", + "Ликович", + "Линдик", + "Ліхно", + "Лобачевська", + "Ломова", + "Лугова", + "Луцька", + "Луцьків", + "Лученко", + "Лучко", + "Люта", + "Лящук", + "Магера", + "Мазайло", + "Мазило", + "Мазун", + "Майборода", + "Майстренко", + "Маковецька", + "Малкович", + "Мамій", + "Маринич", + "Марієвська", + "Марків", + "Махно", + "Миклашевська", + "Миклухо", + "Милославська", + "Михайлюк", + "Міняйло", + "Могилевська", + "Москаль", + "Москалюк", + "Мотрієнко", + "Негода", + "Ногачевська", + "Опенько", + "Осадко", + "Павленко", + "Павлишина", + "Павлів", + "Пагутяк", + "Паламарчук", + "Палій", + "Паращук", + "Пасічник", + "Пендик", + "Петик", + "Петлюра", + "Петренко", + "Петрина", + "Петришина", + "Петрів", + "Плаксій", + "Погиба", + "Поліщук", + "Пономарів", + "Поривай", + "Поривайло", + "Потебенько", + "Потоцька", + "Пригода", + "Приймак", + "Притула", + "Прядун", + "Розпутня", + "Романишина", + "Ромей", + "Роменець", + "Ромочко", + "Савицька", + "Саєнко", + "Свидригайло", + "Семеночко", + "Семещук", + "Сердюк", + "Силецька", + "Сідлецька", + "Сідляк", + "Сірко", + "Скиба", + "Скоропадська", + "Слободян", + "Сосюра", + "Сплюха", + "Спотикач", + "Степанець", + "Стигайло", + "Сторожук", + "Сторчак", + "Стоян", + "Сучак", + "Сушко", + "Тарасюк", + "Тиндарей", + "Ткаченко", + "Третяк", + "Троян", + "Трублаєвська", + "Трясило", + "Трясун", + "Уманець", + "Унич", + "Усич", + "Федоришина", + "Цушко", + "Червоній", + "Шамрило", + "Шевченко", + "Шестак", + "Шиндарей", + "Шиян", + "Шкараба", + "Шудрик", + "Шумило", + "Шупик", + "Шухевич", + "Щербак", + "Юрчишина", + "Юхно", + "Ющик", + "Ющук", + "Яворівська", + "Ялова", + "Ялюк", + "Янюк", + "Ярмак", + "Яцишина", + "Яцьків", + "Ящук" + ]; + +},{}],884:[function(require,module,exports){ + 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"); + name.female_first_name = require("./female_first_name"); + name.female_middle_name = require("./female_middle_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"); + +},{"./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"] = [ + "Августин", + "Аврелій", + "Адам", + "Адріян", + "Азарій", + "Алевтин", + "Альберт", + "Анастас", + "Анастасій", + "Анатолій", + "Андрій", + "Антін", + "Антон", + "Антоній", + "Аркадій", + "Арсен", + "Арсеній", + "Артем", + "Архип", + "Аскольд", + "Афанасій", + "Біломир", + "Білослав", + "Богдан", + "Божемир", + "Божен", + "Болеслав", + "Боримир", + "Боримисл", + "Борис", + "Борислав", + "Братимир", + "Братислав", + "Братомил", + "Братослав", + "Брячислав", + "Будимир", + "Буйтур", + "Буревіст", + "В’ячеслав", + "Вадим", + "Валентин", + "Валерій", + "Василь", + "Велемир", + "Віктор", + "Віталій", + "Влад", + "Владислав", + "Володимир", + "Володислав", + "Всевлад", + "Всеволод", + "Всеслав", + "Гаврило", + "Гарнослав", + "Геннадій", + "Георгій", + "Герасим", + "Гліб", + "Гнат", + "Гордій", + "Горимир", + "Горислав", + "Градимир", + "Григорій", + "Далемир", + "Данило", + "Дарій", + "Даромир", + "Денис", + "Дмитро", + "Добромир", + "Добромисл", + "Доброслав", + "Євген", + "Єремій", + "Захар", + "Захарій", + "Зборислав", + "Звенигор", + "Звенимир", + "Звенислав", + "Земислав", + "Зеновій", + "Зиновій", + "Злат", + "Златомир", + "Зоремир", + "Зореслав", + "Зорян", + "Іван", + "Ігор", + "Ізяслав", + "Ілля", + "Кий", + "Корнелій", + "Корнилій", + "Корнило", + "Корній", + "Костянтин", + "Кузьма", + "Лаврентій", + "Лаврін", + "Лад", + "Ладислав", + "Ладо", + "Ладомир", + "Левко", + "Листвич", + "Лук’ян", + "Любодар", + "Любозар", + "Любомир", + "Макар", + "Максим", + "Мар’ян", + "Маркіян", + "Марко", + "Матвій", + "Мечислав", + "Микита", + "Микола", + "Мирон", + "Мирослав", + "Михайло", + "Мстислав", + "Мусій", + "Назар", + "Назарій", + "Натан", + "Немир", + "Нестор", + "Олег", + "Олександр", + "Олексій", + "Олелько", + "Олесь", + "Омелян", + "Орест", + "Орхип", + "Остап", + "Охрім", + "Павло", + "Панас", + "Пантелеймон", + "Петро", + "Пилип", + "Подолян", + "Потап", + "Радим", + "Радимир", + "Ратибор", + "Ратимир", + "Родіон", + "Родослав", + "Роксолан", + "Роман", + "Ростислав", + "Руслан", + "Святополк", + "Святослав", + "Семибор", + "Сергій", + "Синьоок", + "Славолюб", + "Славомир", + "Славута", + "Сніжан", + "Сологуб", + "Станіслав", + "Степан", + "Стефаній", + "Стожар", + "Тарас", + "Тиміш", + "Тимофій", + "Тихон", + "Тур", + "Устим", + "Хвалимир", + "Хорив", + "Чорнота", + "Щастислав", + "Щек", + "Юліан", + "Юрій", + "Юхим", + "Ян", + "Ярема", + "Яровид", + "Яромил", + "Яромир", + "Ярополк", + "Ярослав" + ]; + +},{}],887:[function(require,module,exports){ + module["exports"] = [ + "Андрухович", + "Бабух", + "Балабан", + "Балабух", + "Балакун", + "Балицький", + "Бамбула", + "Бандера", + "Барановський", + "Бачей", + "Башук", + "Бердник", + "Білич", + "Бондаренко", + "Борецький", + "Боровський", + "Борочко", + "Боярчук", + "Брицький", + "Бурмило", + "Бутько", + "Василин", + "Василишин", + "Васильківський", + "Вергун", + "Вередун", + "Верещук", + "Витребенько", + "Вітряк", + "Волощук", + "Гайдук", + "Гайовий", + "Гайчук", + "Галаєнко", + "Галатей", + "Галаціон", + "Гаман", + "Гамула", + "Ганич", + "Гарай", + "Гарун", + "Гладківський", + "Гладух", + "Глинський", + "Гнатишин", + "Гойко", + "Головець", + "Горбач", + "Гордійчук", + "Горовий", + "Городоцький", + "Гречко", + "Григоришин", + "Гриневецький", + "Гриневський", + "Гришко", + "Громико", + "Данилишин", + "Данилко", + "Демків", + "Демчишин", + "Дзюб’як", + "Дзюба", + "Дідух", + "Дмитришин", + "Дмитрук", + "Довгалевський", + "Дурдинець", + "Євенко", + "Євпак", + "Ємець", + "Єрмак", + "Забіла", + "Зварич", + "Зінкевич", + "Зленко", + "Іванишин", + "Іванів", + "Іванців", + "Калач", + "Кандиба", + "Карпух", + "Каськів", + "Кивач", + "Коваленко", + "Ковальський", + "Коломієць", + "Коман", + "Компанієць", + "Кононець", + "Кордун", + "Корецький", + "Корнїйчук", + "Коров’як", + "Коцюбинський", + "Кулинич", + "Кульчицький", + "Лагойда", + "Лазірко", + "Лановий", + "Латаний", + "Латанський", + "Лахман", + "Левадовський", + "Ликович", + "Линдик", + "Ліхно", + "Лобачевський", + "Ломовий", + "Луговий", + "Луцький", + "Луцьків", + "Лученко", + "Лучко", + "Лютий", + "Лящук", + "Магера", + "Мазайло", + "Мазило", + "Мазун", + "Майборода", + "Майстренко", + "Маковецький", + "Малкович", + "Мамій", + "Маринич", + "Марієвський", + "Марків", + "Махно", + "Миклашевський", + "Миклухо", + "Милославський", + "Михайлюк", + "Міняйло", + "Могилевський", + "Москаль", + "Москалюк", + "Мотрієнко", + "Негода", + "Ногачевський", + "Опенько", + "Осадко", + "Павленко", + "Павлишин", + "Павлів", + "Пагутяк", + "Паламарчук", + "Палій", + "Паращук", + "Пасічник", + "Пендик", + "Петик", + "Петлюра", + "Петренко", + "Петрин", + "Петришин", + "Петрів", + "Плаксій", + "Погиба", + "Поліщук", + "Пономарів", + "Поривай", + "Поривайло", + "Потебенько", + "Потоцький", + "Пригода", + "Приймак", + "Притула", + "Прядун", + "Розпутній", + "Романишин", + "Романів", + "Ромей", + "Роменець", + "Ромочко", + "Савицький", + "Саєнко", + "Свидригайло", + "Семеночко", + "Семещук", + "Сердюк", + "Силецький", + "Сідлецький", + "Сідляк", + "Сірко", + "Скиба", + "Скоропадський", + "Слободян", + "Сосюра", + "Сплюх", + "Спотикач", + "Стахів", + "Степанець", + "Стецьків", + "Стигайло", + "Сторожук", + "Сторчак", + "Стоян", + "Сучак", + "Сушко", + "Тарасюк", + "Тиндарей", + "Ткаченко", + "Третяк", + "Троян", + "Трублаєвський", + "Трясило", + "Трясун", + "Уманець", + "Унич", + "Усич", + "Федоришин", + "Хитрово", + "Цимбалістий", + "Цушко", + "Червоній", + "Шамрило", + "Шевченко", + "Шестак", + "Шиндарей", + "Шиян", + "Шкараба", + "Шудрик", + "Шумило", + "Шупик", + "Шухевич", + "Щербак", + "Юрчишин", + "Юхно", + "Ющик", + "Ющук", + "Яворівський", + "Яловий", + "Ялюк", + "Янюк", + "Ярмак", + "Яцишин", + "Яцьків", + "Ящук" + ]; + +},{}],888:[function(require,module,exports){ + 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"] = [ + "Пан", + "Пані" + ]; + +},{}],891:[function(require,module,exports){ + module["exports"] = [ + "проф.", + "доц.", + "докт. пед. наук", + "докт. політ. наук", + "докт. філол. наук", + "докт. філос. наук", + "докт. і. наук", + "докт. юрид. наук", + "докт. техн. наук", + "докт. психол. наук", + "канд. пед. наук", + "канд. політ. наук", + "канд. філол. наук", + "канд. філос. наук", + "канд. і. наук", + "канд. юрид. наук", + "канд. техн. наук", + "канд. психол. наук" + ]; + +},{}],892:[function(require,module,exports){ + module["exports"] = { + "descriptor": [ + "Головний", + "Генеральний", + "Провідний", + "Національний", + "Регіональний", + "Обласний", + "Районний", + "Глобальний", + "Міжнародний", + "Центральний" + ], + "level": [ + "маркетинговий", + "оптимізаційний", + "страховий", + "функціональний", + "інтеграційний", + "логістичний" + ], + "job": [ + "інженер", + "агент", + "адміністратор", + "аналітик", + "архітектор", + "дизайнер", + "керівник", + "консультант", + "координатор", + "менеджер", + "планувальник", + "помічник", + "розробник", + "спеціаліст", + "співробітник", + "технік" + ] + }; + +},{}],893:[function(require,module,exports){ + module["exports"] = [ + "(044) ###-##-##", + "(050) ###-##-##", + "(063) ###-##-##", + "(066) ###-##-##", + "(073) ###-##-##", + "(091) ###-##-##", + "(092) ###-##-##", + "(093) ###-##-##", + "(094) ###-##-##", + "(095) ###-##-##", + "(096) ###-##-##", + "(097) ###-##-##", + "(098) ###-##-##", + "(099) ###-##-##" + ]; + +},{}],894:[function(require,module,exports){ + arguments[4][47][0].apply(exports,arguments) +},{"./formats":893,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],895:[function(require,module,exports){ + module["exports"] = [ + "#{city_root}" + ]; + +},{}],896:[function(require,module,exports){ + module["exports"] = [ + "Bắc Giang", + "Bắc Kạn", + "Bắc Ninh", + "Cao Bằng", + "Điện Biên", + "Hà Giang", + "Hà Nam", + "Hà Tây", + "Hải Dương", + "TP Hải Phòng", + "Hòa Bình", + "Hưng Yên", + "Lai Châu", + "Lào Cai", + "Lạng Sơn", + "Nam Định", + "Ninh Bình", + "Phú Thọ", + "Quảng Ninh", + "Sơn La", + "Thái Bình", + "Thái Nguyên", + "Tuyên Quang", + "Vĩnh Phúc", + "Yên Bái", + "TP Đà Nẵng", + "Bình Định", + "Đắk Lắk", + "Đắk Nông", + "Gia Lai", + "Hà Tĩnh", + "Khánh Hòa", + "Kon Tum", + "Nghệ An", + "Phú Yên", + "Quảng Bình", + "Quảng Nam", + "Quảng Ngãi", + "Quảng Trị", + "Thanh Hóa", + "Thừa Thiên Huế", + "TP TP. Hồ Chí Minh", + "An Giang", + "Bà Rịa Vũng Tàu", + "Bạc Liêu", + "Bến Tre", + "Bình Dương", + "Bình Phước", + "Bình Thuận", + "Cà Mau", + "TP Cần Thơ", + "Đồng Nai", + "Đồng Tháp", + "Hậu Giang", + "Kiên Giang", + "Lâm Đồng", + "Long An", + "Ninh Thuận", + "Sóc Trăng", + "Tây Ninh", + "Tiền Giang", + "Trà Vinh", + "Vĩnh Long" + ]; + +},{}],897:[function(require,module,exports){ + module["exports"] = [ + "Avon", + "Bedfordshire", + "Berkshire", + "Borders", + "Buckinghamshire", + "Cambridgeshire", + "Central", + "Cheshire", + "Cleveland", + "Clwyd", + "Cornwall", + "County Antrim", + "County Armagh", + "County Down", + "County Fermanagh", + "County Londonderry", + "County Tyrone", + "Cumbria", + "Derbyshire", + "Devon", + "Dorset", + "Dumfries and Galloway", + "Durham", + "Dyfed", + "East Sussex", + "Essex", + "Fife", + "Gloucestershire", + "Grampian", + "Greater Manchester", + "Gwent", + "Gwynedd County", + "Hampshire", + "Herefordshire", + "Hertfordshire", + "Highlands and Islands", + "Humberside", + "Isle of Wight", + "Kent", + "Lancashire", + "Leicestershire", + "Lincolnshire", + "Lothian", + "Merseyside", + "Mid Glamorgan", + "Norfolk", + "North Yorkshire", + "Northamptonshire", + "Northumberland", + "Nottinghamshire", + "Oxfordshire", + "Powys", + "Rutland", + "Shropshire", + "Somerset", + "South Glamorgan", + "South Yorkshire", + "Staffordshire", + "Strathclyde", + "Suffolk", + "Surrey", + "Tayside", + "Tyne and Wear", + "Việt Nam", + "Warwickshire", + "West Glamorgan", + "West Midlands", + "West Sussex", + "West Yorkshire", + "Wiltshire", + "Worcestershire" + ]; + +},{}],898:[function(require,module,exports){ + module["exports"] = [ + "Việt Nam" + ]; + +},{}],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":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":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":903,"./prefix":904}],903:[function(require,module,exports){ + module["exports"] = [ + "#{prefix} #{Name.last_name}" + ]; + +},{}],904:[function(require,module,exports){ + module["exports"] = [ + "Công ty", + "Cty TNHH", + "Cty", + "Cửa hàng", + "Trung tâm", + "Chi nhánh" + ]; + +},{}],905:[function(require,module,exports){ + var vi = {}; + module['exports'] = vi; + vi.title = "Vietnamese"; + vi.address = require("./address"); + vi.internet = require("./internet"); + vi.phone_number = require("./phone_number"); + vi.cell_phone = require("./cell_phone"); + vi.name = require("./name"); + vi.company = require("./company"); + vi.lorem = require("./lorem"); + +},{"./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" + ]; + +},{}],907:[function(require,module,exports){ + arguments[4][88][0].apply(exports,arguments) +},{"./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":909,"/Users/a/dev/faker.js/lib/locales/de/lorem/index.js":38}],909:[function(require,module,exports){ + module["exports"] = [ + "đã", + "đang", + "ừ", + "ờ", + "á", + "không", + "biết", + "gì", + "hết", + "đâu", + "nha", + "thế", + "thì", + "là", + "đánh", + "đá", + "đập", + "phá", + "viết", + "vẽ", + "tô", + "thuê", + "mướn", + "mượn", + "mua", + "một", + "hai", + "ba", + "bốn", + "năm", + "sáu", + "bảy", + "tám", + "chín", + "mười", + "thôi", + "việc", + "nghỉ", + "làm", + "nhà", + "cửa", + "xe", + "đạp", + "ác", + "độc", + "khoảng", + "khoan", + "thuyền", + "tàu", + "bè", + "lầu", + "xanh", + "đỏ", + "tím", + "vàng", + "kim", + "chỉ", + "khâu", + "may", + "vá", + "em", + "anh", + "yêu", + "thương", + "thích", + "con", + "cái", + "bàn", + "ghế", + "tủ", + "quần", + "áo", + "nón", + "dép", + "giày", + "lỗi", + "được", + "ghét", + "giết", + "chết", + "hết", + "tôi", + "bạn", + "tui", + "trời", + "trăng", + "mây", + "gió", + "máy", + "hàng", + "hóa", + "leo", + "núi", + "bơi", + "biển", + "chìm", + "xuồng", + "nước", + "ngọt", + "ruộng", + "đồng", + "quê", + "hương" + ]; + +},{}],910:[function(require,module,exports){ + module["exports"] = [ + "Phạm", + "Nguyễn", + "Trần", + "Lê", + "Lý", + "Hoàng", + "Phan", + "Vũ", + "Tăng", + "Đặng", + "Bùi", + "Đỗ", + "Hồ", + "Ngô", + "Dương", + "Đào", + "Đoàn", + "Vương", + "Trịnh", + "Đinh", + "Lâm", + "Phùng", + "Mai", + "Tô", + "Trương", + "Hà" + ]; + +},{}],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":910,"./last_name":912,"./name":913}],912:[function(require,module,exports){ + module["exports"] = [ + "Nam", + "Trung", + "Thanh", + "Thị", + "Văn", + "Dương", + "Tăng", + "Quốc", + "Như", + "Phạm", + "Nguyễn", + "Trần", + "Lê", + "Lý", + "Hoàng", + "Phan", + "Vũ", + "Tăng", + "Đặng", + "Bùi", + "Đỗ", + "Hồ", + "Ngô", + "Dương", + "Đào", + "Đoàn", + "Vương", + "Trịnh", + "Đinh", + "Lâm", + "Phùng", + "Mai", + "Tô", + "Trương", + "Hà", + "Vinh", + "Nhung", + "Hòa", + "Tiến", + "Tâm", + "Bửu", + "Loan", + "Hiền", + "Hải", + "Vân", + "Kha", + "Minh", + "Nhân", + "Triệu", + "Tuân", + "Hữu", + "Đức", + "Phú", + "Khoa", + "Thắgn", + "Sơn", + "Dung", + "Tú", + "Trinh", + "Thảo", + "Sa", + "Kim", + "Long", + "Thi", + "Cường", + "Ngọc", + "Sinh", + "Khang", + "Phong", + "Thắm", + "Thu", + "Thủy", + "Nhàn" + ]; + +},{}],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}" + ]; + +},{}],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":914,"/Users/a/dev/faker.js/lib/locales/de/phone_number/index.js":47}],916:[function(require,module,exports){ + 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"] = [ + "长", + "上", + "南", + "西", + "北", + "诸", + "宁", + "珠", + "武", + "衡", + "成", + "福", + "厦", + "贵", + "吉", + "海", + "太", + "济", + "安", + "吉", + "包" + ]; + +},{}],919:[function(require,module,exports){ + module["exports"] = [ + "沙市", + "京市", + "宁市", + "安市", + "乡县", + "海市", + "码市", + "汉市", + "阳市", + "都市", + "州市", + "门市", + "阳市", + "口市", + "原市", + "南市", + "徽市", + "林市", + "头市" + ]; + +},{}],920:[function(require,module,exports){ + 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"); + address.street_suffix = require("./street_suffix"); + address.postcode = require("./postcode"); + address.state = require("./state"); + address.state_abbr = require("./state_abbr"); + address.city = require("./city"); + address.street_name = require("./street_name"); + address.street_address = require("./street_address"); + address.default_country = require("./default_country"); + +},{"./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"] = [ + "北京市", + "上海市", + "天津市", + "重庆市", + "黑龙江省", + "吉林省", + "辽宁省", + "内蒙古", + "河北省", + "新疆", + "甘肃省", + "青海省", + "陕西省", + "宁夏", + "河南省", + "山东省", + "山西省", + "安徽省", + "湖北省", + "湖南省", + "江苏省", + "四川省", + "贵州省", + "云南省", + "广西省", + "西藏", + "浙江省", + "江西省", + "广东省", + "福建省", + "台湾省", + "海南省", + "香港", + "澳门" + ]; + +},{}],924:[function(require,module,exports){ + module["exports"] = [ + "京", + "沪", + "津", + "渝", + "黑", + "吉", + "辽", + "蒙", + "冀", + "新", + "甘", + "青", + "陕", + "宁", + "豫", + "鲁", + "晋", + "皖", + "鄂", + "湘", + "苏", + "川", + "黔", + "滇", + "桂", + "藏", + "浙", + "赣", + "粤", + "闽", + "台", + "琼", + "港", + "澳" + ]; + +},{}],925:[function(require,module,exports){ + module["exports"] = [ + "#{street_name}#{building_number}号" + ]; + +},{}],926:[function(require,module,exports){ + module["exports"] = [ + "#{Name.last_name}#{street_suffix}" + ]; + +},{}],927:[function(require,module,exports){ + 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":921,"./name":930,"./phone_number":934}],929:[function(require,module,exports){ + 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"] = [ + "绍齐", + "博文", + "梓晨", + "胤祥", + "瑞霖", + "明哲", + "天翊", + "凯瑞", + "健雄", + "耀杰", + "潇然", + "子涵", + "越彬", + "钰轩", + "智辉", + "致远", + "俊驰", + "雨泽", + "烨磊", + "晟睿", + "文昊", + "修洁", + "黎昕", + "远航", + "旭尧", + "鸿涛", + "伟祺", + "荣轩", + "越泽", + "浩宇", + "瑾瑜", + "皓轩", + "擎苍", + "擎宇", + "志泽", + "子轩", + "睿渊", + "弘文", + "哲瀚", + "雨泽", + "楷瑞", + "建辉", + "晋鹏", + "天磊", + "绍辉", + "泽洋", + "鑫磊", + "鹏煊", + "昊强", + "伟宸", + "博超", + "君浩", + "子骞", + "鹏涛", + "炎彬", + "鹤轩", + "越彬", + "风华", + "靖琪", + "明辉", + "伟诚", + "明轩", + "健柏", + "修杰", + "志泽", + "弘文", + "峻熙", + "嘉懿", + "煜城", + "懿轩", + "烨伟", + "苑博", + "伟泽", + "熠彤", + "鸿煊", + "博涛", + "烨霖", + "烨华", + "煜祺", + "智宸", + "正豪", + "昊然", + "明杰", + "立诚", + "立轩", + "立辉", + "峻熙", + "弘文", + "熠彤", + "鸿煊", + "烨霖", + "哲瀚", + "鑫鹏", + "昊天", + "思聪", + "展鹏", + "笑愚", + "志强", + "炫明", + "雪松", + "思源", + "智渊", + "思淼", + "晓啸", + "天宇", + "浩然", + "文轩", + "鹭洋", + "振家", + "乐驹", + "晓博", + "文博", + "昊焱", + "立果", + "金鑫", + "锦程", + "嘉熙", + "鹏飞", + "子默", + "思远", + "浩轩", + "语堂", + "聪健", + "明", + "文", + "果", + "思", + "鹏", + "驰", + "涛", + "琪", + "浩", + "航", + "彬" + ]; + +},{}],932:[function(require,module,exports){ + module["exports"] = [ + "#{first_name}#{last_name}" + ]; + +},{}],933:[function(require,module,exports){ + module["exports"] = [ + "###-########", + "####-########", + "###########" + ]; + +},{}],934:[function(require,module,exports){ + arguments[4][47][0].apply(exports,arguments) +},{"./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"] = [ + "臺北", + "新北", + "桃園", + "臺中", + "臺南", + "高雄", + "基隆", + "新竹", + "嘉義", + "苗栗", + "彰化", + "南投", + "雲林", + "屏東", + "宜蘭", + "花蓮", + "臺東", + "澎湖", + "金門", + "連江" + ]; + +},{}],938:[function(require,module,exports){ + module["exports"] = [ + "縣", + "市" + ]; + +},{}],939:[function(require,module,exports){ + module["exports"] = [ + "Taiwan (R.O.C.)" + ]; + +},{}],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"] = [ + "福建省", + "台灣省" + ]; + +},{}],943:[function(require,module,exports){ + module["exports"] = [ + "北", + "新北", + "桃", + "中", + "南", + "高", + "基", + "竹市", + "嘉市", + "竹縣", + "苗", + "彰", + "投", + "雲", + "嘉縣", + "宜", + "花", + "東", + "澎", + "金", + "馬" + ]; + +},{}],944:[function(require,module,exports){ + module["exports"] = [ + "#{street_name}#{building_number}號" + ]; + +},{}],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"] = [ + "街", + "路", + "北路", + "南路", + "東路", + "西路" + ]; + +},{}],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":940,"./name":949,"./phone_number":953}],948:[function(require,module,exports){ + 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"] = [ + "紹齊", + "博文", + "梓晨", + "胤祥", + "瑞霖", + "明哲", + "天翊", + "凱瑞", + "健雄", + "耀傑", + "瀟然", + "子涵", + "越彬", + "鈺軒", + "智輝", + "致遠", + "俊馳", + "雨澤", + "燁磊", + "晟睿", + "文昊", + "修潔", + "黎昕", + "遠航", + "旭堯", + "鴻濤", + "偉祺", + "榮軒", + "越澤", + "浩宇", + "瑾瑜", + "皓軒", + "擎蒼", + "擎宇", + "志澤", + "子軒", + "睿淵", + "弘文", + "哲瀚", + "雨澤", + "楷瑞", + "建輝", + "晉鵬", + "天磊", + "紹輝", + "澤洋", + "鑫磊", + "鵬煊", + "昊強", + "偉宸", + "博超", + "君浩", + "子騫", + "鵬濤", + "炎彬", + "鶴軒", + "越彬", + "風華", + "靖琪", + "明輝", + "偉誠", + "明軒", + "健柏", + "修傑", + "志澤", + "弘文", + "峻熙", + "嘉懿", + "煜城", + "懿軒", + "燁偉", + "苑博", + "偉澤", + "熠彤", + "鴻煊", + "博濤", + "燁霖", + "燁華", + "煜祺", + "智宸", + "正豪", + "昊然", + "明杰", + "立誠", + "立軒", + "立輝", + "峻熙", + "弘文", + "熠彤", + "鴻煊", + "燁霖", + "哲瀚", + "鑫鵬", + "昊天", + "思聰", + "展鵬", + "笑愚", + "志強", + "炫明", + "雪松", + "思源", + "智淵", + "思淼", + "曉嘯", + "天宇", + "浩然", + "文軒", + "鷺洋", + "振家", + "樂駒", + "曉博", + "文博", + "昊焱", + "立果", + "金鑫", + "錦程", + "嘉熙", + "鵬飛", + "子默", + "思遠", + "浩軒", + "語堂", + "聰健" + ]; + +},{}],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##-######" + ]; + +},{}],953:[function(require,module,exports){ + arguments[4][47][0].apply(exports,arguments) +},{"./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; } + 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 = 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); + return sentence.charAt(0).toUpperCase() + sentence.slice(1) + '.'; + }; + + /** + * 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(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; } + var paragraphs = []; + 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; + +},{}],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') { + gender = faker.random.number(1); + } + if (gender === 0) { + return faker.random.arrayElement(faker.locales[faker.locale].name.male_first_name) + } else { + return faker.random.arrayElement(faker.locales[faker.locale].name.female_first_name); + } + } + 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') { + gender = faker.random.number(1); + } + if (gender === 0) { + return faker.random.arrayElement(faker.locales[faker.locale].name.male_last_name); + } else { + return faker.random.arrayElement(faker.locales[faker.locale].name.female_last_name); + } + } + 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 + if (typeof gender !== 'number') { + gender = faker.random.number(1); + } + firstName = firstName || faker.name.firstName(gender); + lastName = lastName || faker.name.lastName(gender); + switch (r) { + case 0: + prefix = faker.name.prefix(gender); + if (prefix) { + return prefix + " " + firstName + " " + lastName; + } + case 1: + 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(); + }; + + /** + * 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; + +},{}],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; +},{}],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 + * + * @method faker.random.number + * @param {mixed} options + */ + this.number = function (options) { + + if (typeof options === "number") { + options = { + max: options + }; + } + + options = options || {}; + + if (typeof options.min === "undefined") { + options.min = 0; + } + + if (typeof options.max === "undefined") { + options.max = 99999; + } + if (typeof options.precision === "undefined") { + options.precision = 1; + } + + // Make the range inclusive of the max value + var max = options.max; + if (max >= 0) { + max += options.precision; + } + + var randomNumber = options.precision * Math.floor( + mersenne.rand(max / options.precision, options.min / options.precision)); + + return randomNumber; + + } + + /** + * 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 + * + * @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 = 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); + } + + /** + * 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>> i) & 0x1){ + sum = addition32(sum, unsigned32(n2 << i)); + } + } + return sum; + } + + /* initializes mt[N] with a seed */ + //c//void init_genrand(unsigned long s) + this.init_genrand = function (s) + { + //c//mt[0]= s & 0xffffffff; + mt[0]= unsigned32(s & 0xffffffff); + for (mti=1; mti> 30)) + mti); + addition32(multiplication32(1812433253, unsigned32(mt[mti-1] ^ (mt[mti-1] >>> 30))), mti); + /* See Knuth TAOCP Vol2. 3rd Ed. P.106 for multiplier. */ + /* In the previous versions, MSBs of the seed affect */ + /* only MSBs of the array mt[]. */ + /* 2002/01/09 modified by Makoto Matsumoto */ + //c//mt[mti] &= 0xffffffff; + mt[mti] = unsigned32(mt[mti] & 0xffffffff); + /* for >32 bit machines */ + } + } + + /* initialize by an array with array-length */ + /* init_key is the array for initializing keys */ + /* key_length is its length */ + /* slight change for C++, 2004/2/26 */ + //c//void init_by_array(unsigned long init_key[], int key_length) + this.init_by_array = function (init_key, key_length) + { + //c//int i, j, k; + var i, j, k; + //c//init_genrand(19650218); + this.init_genrand(19650218); + i=1; j=0; + k = (N>key_length ? N : key_length); + for (; k; k--) { + //c//mt[i] = (mt[i] ^ ((mt[i-1] ^ (mt[i-1] >> 30)) * 1664525)) + //c// + init_key[j] + j; /* non linear */ + mt[i] = addition32(addition32(unsigned32(mt[i] ^ multiplication32(unsigned32(mt[i-1] ^ (mt[i-1] >>> 30)), 1664525)), init_key[j]), j); + mt[i] = + //c//mt[i] &= 0xffffffff; /* for WORDSIZE > 32 machines */ + unsigned32(mt[i] & 0xffffffff); + i++; j++; + if (i>=N) { mt[0] = mt[N-1]; i=1; } + if (j>=key_length) j=0; + } + for (k=N-1; k; k--) { + //c//mt[i] = (mt[i] ^ ((mt[i-1] ^ (mt[i-1] >> 30)) * 1566083941)) + //c//- i; /* non linear */ + mt[i] = subtraction32(unsigned32((dbg=mt[i]) ^ multiplication32(unsigned32(mt[i-1] ^ (mt[i-1] >>> 30)), 1566083941)), i); + //c//mt[i] &= 0xffffffff; /* for WORDSIZE > 32 machines */ + mt[i] = unsigned32(mt[i] & 0xffffffff); + i++; + if (i>=N) { mt[0] = mt[N-1]; i=1; } + } + mt[0] = 0x80000000; /* MSB is 1; assuring non-zero initial array */ + } + + /* moved outside of genrand_int32() by jwatte 2010-11-17; generate less garbage */ + var mag01 = [0x0, MATRIX_A]; + + /* generates a random number on [0,0xffffffff]-interval */ + //c//unsigned long genrand_int32(void) + this.genrand_int32 = function () + { + //c//unsigned long y; + //c//static unsigned long mag01[2]={0x0UL, MATRIX_A}; + var y; + /* mag01[x] = x * MATRIX_A for x=0,1 */ + + if (mti >= N) { /* generate N words at one time */ + //c//int kk; + var kk; + + if (mti == N+1) /* if init_genrand() has not been called, */ + //c//init_genrand(5489); /* a default initial seed is used */ + this.init_genrand(5489); /* a default initial seed is used */ + + for (kk=0;kk> 1) ^ mag01[y & 0x1]; + y = unsigned32((mt[kk]&UPPER_MASK)|(mt[kk+1]&LOWER_MASK)); + mt[kk] = unsigned32(mt[kk+M] ^ (y >>> 1) ^ mag01[y & 0x1]); + } + for (;kk> 1) ^ mag01[y & 0x1]; + y = unsigned32((mt[kk]&UPPER_MASK)|(mt[kk+1]&LOWER_MASK)); + mt[kk] = unsigned32(mt[kk+(M-N)] ^ (y >>> 1) ^ mag01[y & 0x1]); + } + //c//y = (mt[N-1]&UPPER_MASK)|(mt[0]&LOWER_MASK); + //c//mt[N-1] = mt[M-1] ^ (y >> 1) ^ mag01[y & 0x1]; + y = unsigned32((mt[N-1]&UPPER_MASK)|(mt[0]&LOWER_MASK)); + mt[N-1] = unsigned32(mt[M-1] ^ (y >>> 1) ^ mag01[y & 0x1]); + mti = 0; + } + + y = mt[mti++]; + + /* Tempering */ + //c//y ^= (y >> 11); + //c//y ^= (y << 7) & 0x9d2c5680; + //c//y ^= (y << 15) & 0xefc60000; + //c//y ^= (y >> 18); + y = unsigned32(y ^ (y >>> 11)); + y = unsigned32(y ^ ((y << 7) & 0x9d2c5680)); + y = unsigned32(y ^ ((y << 15) & 0xefc60000)); + y = unsigned32(y ^ (y >>> 18)); + + return y; + } + + /* generates a random number on [0,0x7fffffff]-interval */ + //c//long genrand_int31(void) + this.genrand_int31 = function () + { + //c//return (genrand_int32()>>1); + return (this.genrand_int32()>>>1); + } + + /* generates a random number on [0,1]-real-interval */ + //c//double genrand_real1(void) + this.genrand_real1 = function () + { + //c//return genrand_int32()*(1.0/4294967295.0); + return this.genrand_int32()*(1.0/4294967295.0); + /* divided by 2^32-1 */ + } + + /* generates a random number on [0,1)-real-interval */ + //c//double genrand_real2(void) + this.genrand_real2 = function () + { + //c//return genrand_int32()*(1.0/4294967296.0); + return this.genrand_int32()*(1.0/4294967296.0); + /* divided by 2^32 */ + } + + /* generates a random number on (0,1)-real-interval */ + //c//double genrand_real3(void) + this.genrand_real3 = function () + { + //c//return ((genrand_int32()) + 0.5)*(1.0/4294967296.0); + return ((this.genrand_int32()) + 0.5)*(1.0/4294967296.0); + /* divided by 2^32 */ + } + + /* generates a random number on [0,1) with 53-bit resolution*/ + //c//double genrand_res53(void) + this.genrand_res53 = function () + { + //c//unsigned long a=genrand_int32()>>5, b=genrand_int32()>>6; + var a=this.genrand_int32()>>>5, b=this.genrand_int32()>>>6; + return(a*67108864.0+b)*(1.0/9007199254740992.0); + } + /* These real versions are due to Isaku Wada, 2002/01/09 added */ + } + +// Exports: Public API + +// Export the twister class + exports.MersenneTwister19937 = MersenneTwister19937; + +// Export a simplified function to generate random numbers + var gen = new MersenneTwister19937; + gen.init_genrand((new Date).getTime() % 1000000000); + +// Added max, min range functionality, Marak Squires Sept 11 2014 + exports.rand = function(max, min) { + if (max === undefined) + { + min = 0; + max = 32768; + } + return Math.floor(gen.genrand_real2() * (max - min) + min); + } + exports.seed = function(S) { + if (typeof(S) != 'number') + { + throw new Error("seed(S) must take numeric argument; is " + typeof(S)); + } + gen.init_genrand(S); + } + exports.seed_array = function(A) { + if (typeof(A) != 'object') + { + throw new Error("seed_array(A) must take array of numbers; is " + typeof(A)); + } + gen.init_by_array(A); + } + +},{}],960:[function(require,module,exports){ + /* + * password-generator + * Copyright(c) 2011-2013 Bermi Ferrer + * MIT Licensed + */ + (function (root) { + + var localName, consonant, letter, password, vowel; + letter = /[a-zA-Z]$/; + vowel = /[aeiouAEIOU]$/; + consonant = /[bcdfghjklmnpqrstvwxyzBCDFGHJKLMNPQRSTVWXYZ]$/; + + + // Defines the name of the local variable the passwordGenerator library will use + // this is specially useful if window.passwordGenerator is already being used + // by your application and you want a different name. For example: + // // Declare before including the passwordGenerator library + // var localPasswordGeneratorLibraryName = 'pass'; + localName = root.localPasswordGeneratorLibraryName || "generatePassword", + + password = function (length, memorable, pattern, prefix) { + var char, n; + if (length == null) { + length = 10; + } + if (memorable == null) { + memorable = true; + } + if (pattern == null) { + pattern = /\w/; + } + if (prefix == null) { + prefix = ''; + } + if (prefix.length >= length) { + return prefix; + } + if (memorable) { + if (prefix.match(consonant)) { + pattern = vowel; + } else { + pattern = consonant; + } + } + n = Math.floor(Math.random() * 94) + 33; + char = String.fromCharCode(n); + if (memorable) { + char = char.toLowerCase(); + } + if (!char.match(pattern)) { + return password(length, memorable, pattern, prefix); + } + return password(length, memorable, pattern, "" + prefix + char); + }; + + + ((typeof exports !== 'undefined') ? exports : root)[localName] = password; + if (typeof exports !== 'undefined') { + if (typeof module !== 'undefined' && module.exports) { + module.exports = password; + } + } + + // Establish the root object, `window` in the browser, or `global` on the server. + }(this)); +},{}],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 + 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. + + ------------------------------------------------------------------------------------------------------------------------ + + Based loosely on Luka Pusic's PHP Script: http://360percents.com/posts/php-random-user-agent-generator/ + + The license for that script is as follows: + + "THE BEER-WARE LICENSE" (Revision 42): + + wrote this file. As long as you retain this notice you can do whatever you want with this stuff. + If we meet some day, and you think this stuff is worth it, you can buy me a beer in return. Luka Pusic + */ + + function rnd(a, b) { + //calling rnd() with no arguments is identical to rnd(0, 100) + a = a || 0; + b = b || 100; + + if (typeof b === 'number' && typeof a === 'number') { + //rnd(int min, int max) returns integer between min, max + return (function (min, max) { + if (min > max) { + throw new RangeError('expected min <= max; got min = ' + min + ', max = ' + max); + } + return Math.floor(Math.random() * (max - min + 1)) + min; + }(a, b)); + } + + if (Object.prototype.toString.call(a) === "[object Array]") { + //returns a random element from array (a), even weighting + return a[Math.floor(Math.random() * a.length)]; + } + + if (a && typeof a === 'object') { + //returns a random key from the passed object; keys are weighted by the decimal probability in their value + return (function (obj) { + var rand = rnd(0, 100) / 100, min = 0, max = 0, key, return_val; + + for (key in obj) { + if (obj.hasOwnProperty(key)) { + max = obj[key] + min; + return_val = key; + if (rand >= min && rand <= max) { + break; + } + min = min + obj[key]; + } + } + + return return_val; + }(a)); + } + + throw new TypeError('Invalid arguments passed to rnd. (' + (b ? a + ', ' + b : a) + ')'); + } + + function randomLang() { + return rnd(['AB', 'AF', 'AN', 'AR', 'AS', 'AZ', 'BE', 'BG', 'BN', 'BO', 'BR', 'BS', 'CA', 'CE', 'CO', 'CS', + 'CU', 'CY', 'DA', 'DE', 'EL', 'EN', 'EO', 'ES', 'ET', 'EU', 'FA', 'FI', 'FJ', 'FO', 'FR', 'FY', + 'GA', 'GD', 'GL', 'GV', 'HE', 'HI', 'HR', 'HT', 'HU', 'HY', 'ID', 'IS', 'IT', 'JA', 'JV', 'KA', + 'KG', 'KO', 'KU', 'KW', 'KY', 'LA', 'LB', 'LI', 'LN', 'LT', 'LV', 'MG', 'MK', 'MN', 'MO', 'MS', + 'MT', 'MY', 'NB', 'NE', 'NL', 'NN', 'NO', 'OC', 'PL', 'PT', 'RM', 'RO', 'RU', 'SC', 'SE', 'SK', + 'SL', 'SO', 'SQ', 'SR', 'SV', 'SW', 'TK', 'TR', 'TY', 'UK', 'UR', 'UZ', 'VI', 'VO', 'YI', 'ZH']); + } + + function randomBrowserAndOS() { + var browser = rnd({ + chrome: .45132810566, + iexplorer: .27477061836, + firefox: .19384170608, + safari: .06186781118, + opera: .01574236955 + }), + os = { + chrome: {win: .89, mac: .09 , lin: .02}, + firefox: {win: .83, mac: .16, lin: .01}, + opera: {win: .91, mac: .03 , lin: .06}, + safari: {win: .04 , mac: .96 }, + iexplorer: ['win'] + }; + + return [browser, rnd(os[browser])]; + } + + function randomProc(arch) { + var procs = { + lin:['i686', 'x86_64'], + mac: {'Intel' : .48, 'PPC': .01, 'U; Intel':.48, 'U; PPC' :.01}, + win:['', 'WOW64', 'Win64; x64'] + }; + return rnd(procs[arch]); + } + + function randomRevision(dots) { + var return_val = ''; + //generate a random revision + //dots = 2 returns .x.y where x & y are between 0 and 9 + for (var x = 0; x < dots; x++) { + return_val += '.' + rnd(0, 9); + } + return return_val; + } + + var version_string = { + net: function () { + return [rnd(1, 4), rnd(0, 9), rnd(10000, 99999), rnd(0, 9)].join('.'); + }, + nt: function () { + return rnd(5, 6) + '.' + rnd(0, 3); + }, + ie: function () { + return rnd(7, 11); + }, + trident: function () { + return rnd(3, 7) + '.' + rnd(0, 1); + }, + osx: function (delim) { + return [10, rnd(5, 10), rnd(0, 9)].join(delim || '.'); + }, + chrome: function () { + return [rnd(13, 39), 0, rnd(800, 899), 0].join('.'); + }, + presto: function () { + return '2.9.' + rnd(160, 190); + }, + presto2: function () { + return rnd(10, 12) + '.00'; + }, + safari: function () { + return rnd(531, 538) + '.' + rnd(0, 2) + '.' + rnd(0,2); + } + }; + + var browser = { + firefox: function firefox(arch) { + //https://developer.mozilla.org/en-US/docs/Gecko_user_agent_string_reference + var firefox_ver = rnd(5, 15) + randomRevision(2), + gecko_ver = 'Gecko/20100101 Firefox/' + firefox_ver, + proc = randomProc(arch), + os_ver = (arch === 'win') ? '(Windows NT ' + version_string.nt() + ((proc) ? '; ' + proc : '') + : (arch === 'mac') ? '(Macintosh; ' + proc + ' Mac OS X ' + version_string.osx() + : '(X11; Linux ' + proc; + + return 'Mozilla/5.0 ' + os_ver + '; rv:' + firefox_ver.slice(0, -2) + ') ' + gecko_ver; + }, + + iexplorer: function iexplorer() { + var ver = version_string.ie(); + + if (ver >= 11) { + //http://msdn.microsoft.com/en-us/library/ie/hh869301(v=vs.85).aspx + return 'Mozilla/5.0 (Windows NT 6.' + rnd(1,3) + '; Trident/7.0; ' + rnd(['Touch; ', '']) + 'rv:11.0) like Gecko'; + } + + //http://msdn.microsoft.com/en-us/library/ie/ms537503(v=vs.85).aspx + return 'Mozilla/5.0 (compatible; MSIE ' + ver + '.0; Windows NT ' + version_string.nt() + '; Trident/' + + version_string.trident() + ((rnd(0, 1) === 1) ? '; .NET CLR ' + version_string.net() : '') + ')'; + }, + + opera: function opera(arch) { + //http://www.opera.com/docs/history/ + var presto_ver = ' Presto/' + version_string.presto() + ' Version/' + version_string.presto2() + ')', + os_ver = (arch === 'win') ? '(Windows NT ' + version_string.nt() + '; U; ' + randomLang() + presto_ver + : (arch === 'lin') ? '(X11; Linux ' + randomProc(arch) + '; U; ' + randomLang() + presto_ver + : '(Macintosh; Intel Mac OS X ' + version_string.osx() + ' U; ' + randomLang() + ' Presto/' + + version_string.presto() + ' Version/' + version_string.presto2() + ')'; + + return 'Opera/' + rnd(9, 14) + '.' + rnd(0, 99) + ' ' + os_ver; + }, + + safari: function safari(arch) { + var safari = version_string.safari(), + ver = rnd(4, 7) + '.' + rnd(0,1) + '.' + rnd(0,10), + os_ver = (arch === 'mac') ? '(Macintosh; ' + randomProc('mac') + ' Mac OS X '+ version_string.osx('_') + ' rv:' + rnd(2, 6) + '.0; '+ randomLang() + ') ' + : '(Windows; U; Windows NT ' + version_string.nt() + ')'; + + return 'Mozilla/5.0 ' + os_ver + 'AppleWebKit/' + safari + ' (KHTML, like Gecko) Version/' + ver + ' Safari/' + safari; + }, + + chrome: function chrome(arch) { + var safari = version_string.safari(), + os_ver = (arch === 'mac') ? '(Macintosh; ' + randomProc('mac') + ' Mac OS X ' + version_string.osx('_') + ') ' + : (arch === 'win') ? '(Windows; U; Windows NT ' + version_string.nt() + ')' + : '(X11; Linux ' + randomProc(arch); + + return 'Mozilla/5.0 ' + os_ver + ' AppleWebKit/' + safari + ' (KHTML, like Gecko) Chrome/' + version_string.chrome() + ' Safari/' + safari; + } + }; + + exports.generate = function generate() { + var random = randomBrowserAndOS(); + return browser[random[0]](random[1]); + }; + +},{}]},{},[1])(1) +}); \ No newline at end of file diff --git a/ui/dashboard/src/main/resources/static/src/js/util/json.tables.1.0.0.js b/ui/dashboard/src/main/resources/static/src/js/util/json.tables.1.0.0.js index f51fe88..8bfff45 100644 --- a/ui/dashboard/src/main/resources/static/src/js/util/json.tables.1.0.0.js +++ b/ui/dashboard/src/main/resources/static/src/js/util/json.tables.1.0.0.js @@ -29,6 +29,7 @@ function appendRow(selector, array, replay, statusCallback) { var tbl_body = ""; var tbl_row = ""; + $.each(item, function (k, v) { if (k != "_links" && k != "lastModified") { tbl_row += "" + ((k == "createdAt") ? new Date(v).toLocaleString() : v) + ""; diff --git a/ui/dashboard/src/main/resources/static/src/partials/main.html b/ui/dashboard/src/main/resources/static/src/partials/main.html index 52c06bb..1e497a0 100644 --- a/ui/dashboard/src/main/resources/static/src/partials/main.html +++ b/ui/dashboard/src/main/resources/static/src/partials/main.html @@ -1,14 +1,26 @@
-
-
-
- Warehouse -
-
-
- Inventory -
-
+
+
+
+
+ Warehouse +
+
+
+ Inventory +
+
+
+
+
+
+
+
+
+ Account 1 + +
+
\ No newline at end of file